summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2012-09-22 23:31:08 +0200
committerDavid Lamparter <equinox@diac24.net>2012-09-22 23:31:44 +0200
commit75aa2df2c319a43186c6853dce551d63b3425bdf (patch)
treedce30a433ef4fcaa2a632e748082dd1d5b210834 /Makefile
parent6966eb287f160c68c597105e60b191806a63b9ba (diff)
tick: optional SP debugging
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c082c6f..1f3dcc7 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ CFLAGS_OPT=-Os \
-fwhole-program
CFLAGS_WARN=-std=gnu99 -Wall -Wextra -Wno-unused -pedantic
CFLAGS_LD=-Wl,-T,avr4-signature.x
-CFLAGS=${CFLAGS_WARN} ${CFLAGS_OPT} ${CFLAGS_LD}
+CFLAGS_=${CFLAGS_WARN} ${CFLAGS_OPT} ${CFLAGS_LD} ${CFLAGS}
MCU_door=48
MCU_lightctrl=88
AVRDUDE=avrdude
@@ -32,4 +32,4 @@ endif
%.flash: %.elf Makefile
avr-objcopy -j .text -j .data -O ihex $< $@
%.elf: %.c *.c *.x Makefile
- avr-gcc -mmcu=atmega$(MCU_$(basename $@)) ${CFLAGS} -o $@ $<
+ avr-gcc -mmcu=atmega$(MCU_$(basename $@)) ${CFLAGS_} -o $@ $<