diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/common/Makefile.in | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5e8f713..bd4667e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2011-02-21 Jan Kratochvil <jan.kratochvil@redhat.com> + + * common/Makefile.in (CFLAGS): New. + (COMPILE): Add $(CFLAGS). + 2011-02-21 Tom Tromey <tromey@redhat.com> * breakpoint.c (catch_syscall_command_1): Fix typo. diff --git a/gdb/common/Makefile.in b/gdb/common/Makefile.in index a87f2d1..9230b87 100644 --- a/gdb/common/Makefile.in +++ b/gdb/common/Makefile.in @@ -23,6 +23,10 @@ AUTOHEADER = @AUTOHEADER@ RANLIB = @RANLIB@ COMMON_CPU_OBJ = @COMMON_CPU_OBJ@ +# CFLAGS is specifically reserved for setting from the command line +# when running make. I.E. "make CFLAGS=-Wmissing-prototypes". +CFLAGS = @CFLAGS@ + BFD_DIR = ../../bfd BFD_SRC = $(srcdir)/$(BFD_DIR) BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC) @@ -37,7 +41,8 @@ all: libcommon.a signals.o: $(srcdir)/signals.c $(COMPILE) $(srcdir)/signals.c -COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) @GDB_FLAGS@ $(CPPFLAGS) $(ALL_CFLAGS) -c +COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) \ + @GDB_FLAGS@ $(CPPFLAGS) $(ALL_CFLAGS) $(CFLAGS) -c # Implicit rules |