diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-04-13 09:04:40 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-04-13 09:04:40 +0200 |
commit | b1355998c859cf4a1531b1035ca0ccb4a9e97409 (patch) | |
tree | 066c2860c5df095645beb9af057ddeb617277e80 /src/arch/arduino-nano/Makefile.inc | |
parent | 168ea4b5641eb08ef24c70e94e332aaabf7e2e81 (diff) |
prepare for switch to config.h instead of CFLAGS defines
Diffstat (limited to 'src/arch/arduino-nano/Makefile.inc')
-rw-r--r-- | src/arch/arduino-nano/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/arduino-nano/Makefile.inc b/src/arch/arduino-nano/Makefile.inc index 12777d9..0ce2ef7 100644 --- a/src/arch/arduino-nano/Makefile.inc +++ b/src/arch/arduino-nano/Makefile.inc @@ -140,10 +140,10 @@ COMMON_FLAGS += -DBAUD=${uart_baud}UL OBJECTS = ${CXX_TARGETS:.cc=.o} ${C_TARGETS:.c=.o} -.cc.o: +%.o : %.cc | include/config.h ${QUIET}${CXX} ${INCLUDES} ${COMMON_FLAGS} ${CXXFLAGS} -c -o $@ ${@:.o=.cc} -.c.o: +%.o : %.c | include/config.h ${QUIET}${CC} ${INCLUDES} ${COMMON_FLAGS} ${CFLAGS} -c -o $@ ${@:.o=.c} build/system.elf: ${OBJECTS} |