diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-09-26 18:57:43 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-09-26 18:57:43 +0000 |
commit | 472af17f3050937105b73069cc390b6193e4fdeb (patch) | |
tree | c3f8c287f9275f812368c3e4a1819095fa3b9065 /Makefile.in | |
parent | 381897782af6077f9fb90ab237b4d103ae499150 (diff) | |
download | gdb-472af17f3050937105b73069cc390b6193e4fdeb.zip gdb-472af17f3050937105b73069cc390b6193e4fdeb.tar.gz gdb-472af17f3050937105b73069cc390b6193e4fdeb.tar.bz2 |
Simplify targets by undoing change (with no ChangeLog entry) of June 8
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/Makefile.in b/Makefile.in index d09b89b..8a86b4e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -705,14 +705,10 @@ gcc-no-fixedincludes: .PHONY: $(ALL_MODULES) all-glob all-gui all-libproc $(ALL_MODULES) all-glob all-gui all-libproc: @dir=`echo $@ | sed -e 's/all-//'`; \ - if [ -d ./$${dir} ] ; then \ - if [ -f ./$${dir}/Makefile ] ; then \ - r=`pwd`; export r; \ - srcroot=`cd $(srcdir); pwd`; export srcroot; \ - (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \ - else \ - true ; \ - fi; \ + if [ -f ./$${dir}/Makefile ] ; then \ + r=`pwd`; export r; \ + srcroot=`cd $(srcdir); pwd`; export srcroot; \ + (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \ else \ true; \ fi @@ -724,14 +720,12 @@ $(ALL_MODULES) all-glob all-gui all-libproc: $(NATIVE_CHECK_MODULES): @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ dir=`echo $@ | sed -e 's/check-//'`; \ - if [ -d ./$${dir} ] ; then \ - if [ -f ./$${dir}/Makefile ] ; then \ - r=`pwd`; export r; \ - srcroot=`cd $(srcdir); pwd`; export srcroot; \ - (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \ - else \ - true; \ - fi ; \ + if [ -f ./$${dir}/Makefile ] ; then \ + r=`pwd`; export r; \ + srcroot=`cd $(srcdir); pwd`; export srcroot; \ + (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \ + else \ + true; \ fi; \ fi @@ -911,7 +905,7 @@ all-gas: all-libiberty all-opcodes all-bfd all-gash: all-tcl all-gawk: all-gcc: all-libiberty all-byacc all-binutils all-gas all-pagas -all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-glob all-byacc all-sim +all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-glob all-byacc all-sim all-gcc all-ld all-glob: all-gprof: all-libiberty all-bfd all-grep: all-libiberty |