diff options
author | Mike Werner <mtw@cygnus> | 1992-08-31 23:19:34 +0000 |
---|---|---|
committer | Mike Werner <mtw@cygnus> | 1992-08-31 23:19:34 +0000 |
commit | 868ebe79a851acd5a214e547171c3242995cea33 (patch) | |
tree | a9280ead23ffe5af7c9781f4312aa48203e57204 | |
parent | cfb48ce52d635ba21a7c255498db7dddfd319df4 (diff) | |
download | gdb-868ebe79a851acd5a214e547171c3242995cea33.zip gdb-868ebe79a851acd5a214e547171c3242995cea33.tar.gz gdb-868ebe79a851acd5a214e547171c3242995cea33.tar.bz2 |
get the order of opcodes + binutils right so that everything builds
-rw-r--r-- | Makefile.in | 8 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 81049e9..a8bd5b5 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 bfd gdb binutils opcodes ld gas tgas gcc libg++ newlib libm # clib -- newlib replaces +SUBDIRS = libiberty mmalloc glob readline opcodes bfd gdb binutils opcodes ld gas tgas gcc libg++ newlib libm # clib -- newlib replaces OTHERS = ALL = all.normal @@ -135,14 +135,14 @@ install-dir.info: $(INSTALL_DATA) dir.info $(infodir)/dir.info all.normal: all-autoconf all-libiberty all-mmalloc all-texinfo \ - all-byacc all-flex all-bfd all-ld all-gas all-tgas all-gcc \ - all-binutils all-opcodes all-libg++ all-readline all-gdb \ + all-byacc all-flex all-opcodes all-bfd all-ld all-gas all-tgas \ + all-gcc all-binutils all-libg++ all-readline all-gdb \ all-make all-rcs all-cvs all-diff all-grep \ all-patch all-emacs all-ispell all-etc \ all-newlib all-gprof all-send_pr all-libm all.cross: all-libiberty all-mmalloc all-gas all-byacc all-flex all-ld \ - all-bfd all-readline all-gdb all-binutils all-opcodes all-gcc \ + all-opcodes all-bfd all-readline all-gdb all-binutils all-gcc \ all-newlib # $(MAKE) $(FLAGS_TO_PASS) subdir_do DO=all "DODIRS=$(SUBDIRS) $(OTHERS)" diff --git a/configure.in b/configure.in index 701b12a..27090e7 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ # script appropriate for this directory. For more information, check # any existing configure script. -configdirs="autoconf libgcc mmalloc libiberty texinfo bfd binutils byacc bison flex gcc readline glob ld gas gdb emacs ispell make grep diff rcs cvs patch send_pr libg++ newlib gprof gdbtest libm tgas opcodes" +configdirs="autoconf libgcc mmalloc libiberty texinfo opcodes bfd binutils byacc bison flex gcc readline glob ld gas gdb emacs ispell make grep diff rcs cvs patch send_pr libg++ newlib gprof gdbtest libm tgas " srctrigger=cfg-paper.texi srcname="gnu development package" |