aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorRoland Pesch <pesch@cygnus>1991-09-12 21:08:51 +0000
committerRoland Pesch <pesch@cygnus>1991-09-12 21:08:51 +0000
commitb5493bc4c88bf3867b2b2450f1bff58f425ea419 (patch)
tree97ed0c8583327a2ccdbe5acded4446492e696626 /bfd
parentff2e185071a6ab97d0e043c33370adec7fd5b836 (diff)
downloadgdb-b5493bc4c88bf3867b2b2450f1bff58f425ea419.zip
gdb-b5493bc4c88bf3867b2b2450f1bff58f425ea419.tar.gz
gdb-b5493bc4c88bf3867b2b2450f1bff58f425ea419.tar.bz2
Thu Sep 12 14:07:22 1991 Roland H. Pesch (pesch at cygint.cygnus.com)
* Makefile.in: $(MAKE) for make, $(docdir) for doc * doc/Makefile: redundant dependencies for Sun-make VPATH bug
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/Makefile.in8
2 files changed, 9 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index c917997..db1e138 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+Thu Sep 12 14:07:22 1991 Roland H. Pesch (pesch at cygint.cygnus.com)
+
+ * Makefile.in: $(MAKE) for make, $(docdir) for doc
+ * doc/Makefile: redundant dependencies for Sun-make VPATH bug
+
Tue Sep 10 20:34:12 1991 John Gilmore (gnu at cygint.cygnus.com)
* aoutf1.h (sunos4_core_file_p): Release the right storage in
diff --git a/bfd/Makefile.in b/bfd/Makefile.in
index 8167818..859db34 100644
--- a/bfd/Makefile.in
+++ b/bfd/Makefile.in
@@ -201,20 +201,20 @@ headers:
cp $(srcdir)/bfd-in.h $(docdir)
cp $(srcdir)/libbfd-in.h $(docdir)
cp $(srcdir)/libcoff-in.h $(docdir)
- (cd $(docdir); make protos)
+ (cd $(docdir); $(MAKE) protos)
# Rebuild prototypes in bfd.h
cp $(docdir)/bfd.h $(BFD_H)
cp $(docdir)/libbfd.h $(srcdir)/libbfd.h
cp $(docdir)/libcoff.h $(srcdir)/libcoff.h
bfd.info:
- ( cd doc; make bfd.info)
+ ( cd $(docdir); $(MAKE) bfd.info)
bfd.dvi:
- (cd doc; make bfd.dvi)
+ (cd $(docdir); $(MAKE) bfd.dvi)
bfd.ps:
- (cd doc; make bfd.ps)
+ (cd $(docdir); $(MAKE) bfd.ps)
# What appears below is generated by a hacked mkdep using gcc -MM.