aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1992-09-09 03:15:37 +0000
committerKen Raeburn <raeburn@cygnus>1992-09-09 03:15:37 +0000
commita904db53486bd7ac244a83e59e3274eb869575f4 (patch)
tree3f01c8dc193d60c2ba537aa26fb084639acca34a
parent54a9da01d3d369e96c42dfbfeac4f74a595a4274 (diff)
downloadbinutils-a904db53486bd7ac244a83e59e3274eb869575f4.zip
binutils-a904db53486bd7ac244a83e59e3274eb869575f4.tar.gz
binutils-a904db53486bd7ac244a83e59e3274eb869575f4.tar.bz2
build opcodes before gas or gdb
-rw-r--r--ChangeLog11
-rw-r--r--Makefile.in12
2 files changed, 16 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 498686b..f063af9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,15 @@
+Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
+
+ * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
+ first.
+
+Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
+
+ * config.sub: Accept `elf' as an environment.
+
Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
- * Makefile.in: all-opcodes, cd into the right directory
+ * Makefile.in (all-opcodes): cd into the right directory
Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
diff --git a/Makefile.in b/Makefile.in
index a8bd5b5..c24f0b2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -65,7 +65,7 @@ MAKEINFO = `if [ -f $${rootme}/texinfo/C/makeinfo ] ; \
then echo $${rootme}/texinfo/C/makeinfo ; \
else echo makeinfo ; fi`
-SUBDIRS = libiberty mmalloc glob readline opcodes bfd gdb binutils opcodes ld gas tgas gcc libg++ newlib libm # clib -- newlib replaces
+SUBDIRS = libiberty mmalloc glob readline opcodes bfd gdb binutils ld gas tgas gcc libg++ newlib libm # clib -- newlib replaces
OTHERS =
ALL = all.normal
@@ -386,7 +386,7 @@ install-bfd: force
all-opcodes: force
@if [ -f ./opcodes/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
- (cd ./bfd; \
+ (cd ./opcodes; \
$(MAKE) $(FLAGS_TO_PASS) all) ; \
else \
true ; \
@@ -395,7 +395,7 @@ all-opcodes: force
clean-opcodes: force
@if [ -f ./opcodes/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
- (cd ./bfd; \
+ (cd ./opcodes; \
$(MAKE) $(FLAGS_TO_PASS) clean) ; \
else \
true ; \
@@ -404,7 +404,7 @@ clean-opcodes: force
install-opcodes: force
@if [ -f ./opcodes/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
- (cd ./bfd; \
+ (cd ./opcodes; \
$(MAKE) $(FLAGS_TO_PASS) install) ; \
else \
true ; \
@@ -628,7 +628,7 @@ install-glob: force
fi
### gas
-all-gas: all-libiberty all-bfd
+all-gas: all-libiberty all-opcodes all-bfd
@if [ -f ./gas/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./gas; \
@@ -695,7 +695,7 @@ install-ld: force
fi
### gdb
-all-gdb: all-bfd all-libiberty all-mmalloc all-readline all-glob all-byacc
+all-gdb: all-bfd all-opcodes all-libiberty all-mmalloc all-readline all-glob all-byacc
@if [ -f ./gdb/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./gdb; \