diff options
author | Steve Chamberlain <sac@cygnus> | 1992-07-17 01:34:45 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-07-17 01:34:45 +0000 |
commit | 3ad0ef3736ac336e2c4f621498c26b1cf3a3a1d0 (patch) | |
tree | c183e481e5e13a635700a7d95b0766bbac55dbae /Makefile.in | |
parent | 9e3e75685b827d973568557400278dc044779eed (diff) | |
download | gdb-3ad0ef3736ac336e2c4f621498c26b1cf3a3a1d0.zip gdb-3ad0ef3736ac336e2c4f621498c26b1cf3a3a1d0.tar.gz gdb-3ad0ef3736ac336e2c4f621498c26b1cf3a3a1d0.tar.bz2 |
* Makefile.in, configure.in: add tgas
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index c51df49..4707e88 100644 --- a/Makefile.in +++ b/Makefile.in @@ -69,7 +69,7 @@ MAKEINFO = `if [ -d $${rootme}/texinfo/C ] ; \ then echo $${rootme}/texinfo/C/makeinfo ; \ else echo makeinfo ; fi` -SUBDIRS = libiberty mmalloc glob readline bfd gdb binutils ld gas gcc libg++ libgcc clib newlib libm +SUBDIRS = libiberty mmalloc glob readline bfd gdb binutils ld gas tgas gcc libg++ libgcc clib newlib libm OTHERS = ALL = all.normal @@ -147,13 +147,13 @@ install-dir.info: $(INSTALL_DATA) dir.info $(infodir)/dir.info all.normal: all-autoconf all-libiberty all-mmalloc all-texinfo \ - all-bison all-byacc all-flex all-bfd all-ld all-gas all-gcc \ + all-bison all-byacc all-flex 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-newlib all-gprof all-send_pr all-libm -all.cross: all-libiberty all-mmalloc all-gas all-byacc all-ld \ +all.cross: all-libiberty all-mmalloc all-gas all-tgas all-byacc all-ld \ all-bfd all-libgcc all-readline all-gdb all-newlib # $(MAKE) $(FLAGS_TO_PASS) subdir_do DO=all "DODIRS=$(SUBDIRS) $(OTHERS)" @@ -620,6 +620,17 @@ install-gas: force true ; \ fi +### gas +all-tgas: all-libiberty all-bfd + @if [ -f ./tgas/Makefile ] ; then \ + rootme=`pwd` ; export rootme ; \ + (cd ./tgas; \ + $(MAKE) $(FLAGS_TO_PASS) all) ; \ + else \ + true ; \ + fi + + ### ld all-ld: all-libiberty all-bfd all-byacc all-flex @if [ -f ./ld/Makefile ] ; then \ |