make makefile respect CFLAGS

This commit is contained in:
bentley
2010-01-15 18:55:34 -07:00
parent 7474cee70d
commit 80e957b5d5

View File

@@ -1,6 +1,6 @@
localversion = $(shell sh scripts/localversion.sh) localversion = $(shell sh scripts/localversion.sh)
cflags = -Wall -Iinclude -Iinclude/asm/gameboy -DLOCALVERSION=\"$(localversion)\" -g -std=c99 -D_POSIX_C_SOURCE=200112L CFLAGS+=-Wall -Iinclude -Iinclude/asm/gameboy -DLOCALVERSION=\"$(localversion)\" -g -std=c99 -D_POSIX_C_SOURCE=200112L
all: all:
@@ -50,19 +50,19 @@ clean:
rm -rf src/asm/asmy.c rm -rf src/asm/asmy.c
rgbasm: $(rgbasm_obj) rgbasm: $(rgbasm_obj)
${CC} $(cflags) -o $@ $(rgbasm_obj) -lm ${CC} $(CFLAGS) -o $@ $(rgbasm_obj) -lm
rgblib: $(rgblib_obj) rgblib: $(rgblib_obj)
${CC} $(cflags) -o $@ $(rgblib_obj) ${CC} $(CFLAGS) -o $@ $(rgblib_obj)
rgblink: $(rgblink_obj) rgblink: $(rgblink_obj)
${CC} $(cflags) -o $@ $(rgblink_obj) ${CC} $(CFLAGS) -o $@ $(rgblink_obj)
rgbfix: $(rgbfix_obj) rgbfix: $(rgbfix_obj)
${CC} $(cflags) -o $@ $(rgbfix_obj) ${CC} $(CFLAGS) -o $@ $(rgbfix_obj)
.c.o: .c.o:
${CC} $(cflags) -c -o $@ $< ${CC} $(CFLAGS) -c -o $@ $<
src/asm/asmy.c: src/asm/asmy.y src/asm/asmy.c: src/asm/asmy.y
${YACC} -d -o $@ $< ${YACC} -d -o $@ $<