diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-11-13 20:47:41 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-11-13 20:47:41 +0000 |
commit | 19b1d034dc7bf98641cbea4934ec3f451d1db1f2 (patch) | |
tree | 6c9851ac67179a255e7818466ccb62991d2b18a9 /Makefile.in | |
parent | afa67334cb5f8f74dbc9a7295284ee38972f1e4f (diff) | |
download | gdb-19b1d034dc7bf98641cbea4934ec3f451d1db1f2.zip gdb-19b1d034dc7bf98641cbea4934ec3f451d1db1f2.tar.gz gdb-19b1d034dc7bf98641cbea4934ec3f451d1db1f2.tar.bz2 |
* config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
accept mpw and mac-mpw as names for m68k Macs, change macos7 to
just macos.
* configure.in: Configure grez resource compiler if targeting Mac.
* Makefile.in (all-grez, install-grez): New targets.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 7f1676a..3840e4d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -394,6 +394,7 @@ ALL_MODULES = \ all-gawk \ all-gprof \ all-grep \ + all-grez \ all-gzip \ all-hello \ all-indent \ @@ -498,6 +499,7 @@ INSTALL_MODULES = \ install-gawk \ install-gprof \ install-grep \ + install-grez \ install-gzip \ install-hello \ install-indent \ @@ -859,8 +861,15 @@ $(CONFIGURE_TARGET_MODULES): LD="$(LD_FOR_TARGET)"; export LD; \ NM="$(NM_FOR_TARGET)"; export NM; \ RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \ + echo Configuring in $(TARGET_SUBDIR)/$${dir}; \ cd $(TARGET_SUBDIR)/$${dir}; \ - $${srcroot}/configure $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \ + if [ -f $${srcroot}/$${dir}/configure ] ; then \ + $${srcroot}/$${dir}/configure \ + $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \ + else \ + $${srcroot}/configure \ + $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \ + fi; \ else \ true; \ fi \ @@ -1023,6 +1032,7 @@ all-gcc: all-libiberty all-byacc all-binutils all-gas all-ld all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements) all-gprof: all-libiberty all-bfd all-grep: all-libiberty +all-grez: all-libiberty all-bfd all-gui: all-gdb all-libproc all-target-librx all-gzip: all-libiberty all-hello: all-libiberty |