* Makefile.in (INTERNAL_CPPFLAGS): New.
(INTERNAL_CFLAGS_BASE): Use it.
This commit is contained in:
parent
a98b27f2d3
commit
d3f4f91a6f
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-08-22 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* Makefile.in (INTERNAL_CPPFLAGS): New.
|
||||
(INTERNAL_CFLAGS_BASE): Use it.
|
||||
|
||||
2006-08-22 Michael Snyder <Michael.Snyder@PalmSource.com>
|
||||
|
||||
* MAINTAINERS: Update my email address.
|
||||
|
|
|
@ -342,6 +342,9 @@ PROFILE_CFLAGS = @PROFILE_CFLAGS@
|
|||
# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
|
||||
CFLAGS = @CFLAGS@
|
||||
|
||||
# Set by configure, for e.g. expat.
|
||||
INTERNAL_CPPFLAGS = @CPPFLAGS@
|
||||
|
||||
# Need to pass this to testsuite for "make check". Probably should be
|
||||
# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
|
||||
# so "make check" has the same result no matter where it is run.
|
||||
|
@ -352,7 +355,7 @@ INTERNAL_CFLAGS_BASE = \
|
|||
$(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
|
||||
$(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
|
||||
$(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
|
||||
$(INTL_CFLAGS) $(ENABLE_CFLAGS)
|
||||
$(INTL_CFLAGS) $(ENABLE_CFLAGS) $(INTERNAL_CPPFLAGS)
|
||||
INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
|
||||
INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue