* Makefile.in (install): Don't depend on gdb.

This commit is contained in:
Jim Kingdon 1993-06-11 19:08:18 +00:00
parent 10d7cfa7cf
commit 702c0ff7fb
2 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Fri Jun 11 10:17:41 1993 Jim Kingdon (kingdon@cygnus.com)
* Makefile.in (install): Don't depend on gdb.
* Rename remote-es1800.c to remote-es.c
and remote-st2000.c to remote-st.c for 14-char filenames.
config/m68k/{es1800,st2000}: Use the new names.

View File

@ -441,7 +441,11 @@ gdb.z:gdb.1
pack gdb.t ; rm -f gdb.t
mv gdb.t.z gdb.z
install: gdb
# Traditionally this depends on "all". But it is probably more useful
# not to; for example, if the user has made some trivial change to a
# source file and doesn't care about rebuilding or just wants to save the
# time it takes for make to check that all is up to date.
install:
-parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
-if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
@ -621,6 +625,8 @@ depend: $(SOURCES) Makefile.in
-e '/:.*\.tab\.c/d' \
-e 's/.*:\(.*\.c\).*/ $${CC} -c $${INTERNAL_CFLAGS} \1/' \
-e 's;$${srcdir}/xcoffread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
-e 's;$${srcdir}/xcoffexec.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
-e 's;$${srcdir}/paread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
-e 's;$${srcdir}/stabsread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
-e 's;$${srcdir}/dwarfread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
-e 's;$${srcdir}/elfread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \