diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-08-29 00:41:25 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-08-29 00:41:25 +0000 |
commit | 791f39718a26c3fbedbd1f6a90956ecdfe03340a (patch) | |
tree | 4e47ef156b5106ec3ad9c6e128c7047bc33e552a /opcodes/Makefile.am | |
parent | d08422b334e3fb749f39433ced5ed85da842203a (diff) | |
download | gdb-791f39718a26c3fbedbd1f6a90956ecdfe03340a.zip gdb-791f39718a26c3fbedbd1f6a90956ecdfe03340a.tar.gz gdb-791f39718a26c3fbedbd1f6a90956ecdfe03340a.tar.bz2 |
binutils/
2009-08-28 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.am (sysinfo$(EXEEXT_FOR_BUILD)): Replace
CFLAGS/LDFLAGS with CFLAGS_FOR_BUILD/LDFLAGS_FOR_BUILD.
(syslex.o): Likewise.
(sysinfo.o): Likewise.
(bin2c$(EXEEXT_FOR_BUILD)): Likewise.
* Makefile.in: Regenerated.
opcodes/
2009-08-28 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.am (COMPILE_FOR_BUILD): Remove BUILD_CPPFLAGS.
Replace BUILD_CFLAGS with CFLAGS_FOR_BUILD.
(LINK_FOR_BUILD): Replace BUILD_CFLAGS/BUILD_LDFLAGS with
CFLAGS_FOR_BUILD/LDFLAGS_FOR_BUILD.
* Makefile.in: Regenerated.
Diffstat (limited to 'opcodes/Makefile.am')
-rw-r--r-- | opcodes/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/opcodes/Makefile.am b/opcodes/Makefile.am index 4f9a390..7b8bc12 100644 --- a/opcodes/Makefile.am +++ b/opcodes/Makefile.am @@ -14,8 +14,9 @@ NO_WERROR = @NO_WERROR@ AM_CFLAGS = $(WARN_CFLAGS) COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(INCLUDES) $(AM_CPPFLAGS) \ - $(BUILD_CPPFLAGS) $(BUILD_CFLAGS) -LINK_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ + $(CFLAGS_FOR_BUILD) +LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) \ + $(LDFLAGS_FOR_BUILD) -o $@ libopcodes_la_LDFLAGS = if INSTALL_LIBBFD |