From 702c0ff7fb507c0bfbcbbb952c0543eecefd50c7 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Fri, 11 Jun 1993 19:08:18 +0000 Subject: [PATCH] * Makefile.in (install): Don't depend on gdb. --- gdb/ChangeLog | 2 ++ gdb/Makefile.in | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c1c3e6745a..ae31db0c39 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index ad56df94eb..cd0473a36c 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -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} &;' \