diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-09-04 18:31:40 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-09-04 18:31:40 +0000 |
commit | 2b79a10471177329465a195f19440a8c8dbbb8ff (patch) | |
tree | be5b500c7f75d94761b3764228638a1dda51eda7 /bfd/Makefile.in | |
parent | c62d12746b2f1bfcf38fa7de6ded9287e751e927 (diff) | |
download | gdb-2b79a10471177329465a195f19440a8c8dbbb8ff.zip gdb-2b79a10471177329465a195f19440a8c8dbbb8ff.tar.gz gdb-2b79a10471177329465a195f19440a8c8dbbb8ff.tar.bz2 |
* config.bfd: Rewrite to incorporate the contents of the Makefile
fragments by setting shell variables, rather than merely returning
the name of a Makefile fragment.
* configure.in: Use shell variables set by config.bfd rather than
looking at the target Makefile fragment files. Don't substitute
target_makefile_frag. Do substitute TDEFINES.
* configure: Rebuild.
* Makefile.in (@target_makefile_frag@): Remove.
(ALL_CFLAGS): Change $(TDEFINES) to @TDEFINES@.
* config/*.mt: Remove.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 5dc6fb4..feb11f0 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -234,7 +234,6 @@ TDEFAULTS = @tdefaults@ all: #### host and target dependent Makefile fragments come in here. -# @target_makefile_frag@ # @host_makefile_frag@ ### @@ -254,7 +253,7 @@ FLAGS_TO_PASS = \ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ "BISON=$(BISON)" -ALL_CFLAGS=$(CFLAGS) $(HDEFINES) @COREFLAG@ $(TDEFINES) $(CSEARCH) $(CSWITCHES) +ALL_CFLAGS=$(CFLAGS) $(HDEFINES) @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) .c.o: $(CC) -c $(ALL_CFLAGS) $< |