aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-06-11 19:08:18 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-06-11 19:08:18 +0000
commit702c0ff7fb507c0bfbcbbb952c0543eecefd50c7 (patch)
tree22784f5ab7cec0d6c6a85aa434f18a7702ea274b
parent10d7cfa7cf55b47a367e04043a4362ea6f1c49b0 (diff)
downloadgdb-702c0ff7fb507c0bfbcbbb952c0543eecefd50c7.zip
gdb-702c0ff7fb507c0bfbcbbb952c0543eecefd50c7.tar.gz
gdb-702c0ff7fb507c0bfbcbbb952c0543eecefd50c7.tar.bz2
* Makefile.in (install): Don't depend on gdb.
-rw-r--r--gdb/ChangeLog2
-rw-r--r--gdb/Makefile.in8
2 files changed, 9 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c1c3e67..ae31db0 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 ad56df9..cd0473a 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} &;' \