diff options
Diffstat (limited to 'gdb/common/Makefile.in')
-rw-r--r-- | gdb/common/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
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 |