summaryrefslogtreecommitdiff
path: root/src/arch/esp8266
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2021-04-13 09:04:40 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2021-04-13 09:04:40 +0200
commitb1355998c859cf4a1531b1035ca0ccb4a9e97409 (patch)
tree066c2860c5df095645beb9af057ddeb617277e80 /src/arch/esp8266
parent168ea4b5641eb08ef24c70e94e332aaabf7e2e81 (diff)
prepare for switch to config.h instead of CFLAGS defines
Diffstat (limited to 'src/arch/esp8266')
-rw-r--r--src/arch/esp8266/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/esp8266/Makefile.inc b/src/arch/esp8266/Makefile.inc
index 18877ee..7bbc2f1 100644
--- a/src/arch/esp8266/Makefile.inc
+++ b/src/arch/esp8266/Makefile.inc
@@ -64,11 +64,11 @@ ifdef CONFIG_arch_esp8266_driver_uptime
CXX_TARGETS += src/arch/esp8266/driver/uptime.cc
endif
-.cc.o:
+%.o : %.cc | include/config.h
${QUIET}${CXX} ${INCLUDES} ${COMMON_FLAGS} ${CXXFLAGS} -c -o $@ ${@:.o=.cc}
${QUIET}${OBJCOPY} --rename-section .text=.irom0.text --rename-section .literal=.irom0.literal $@
-.c.o:
+%.o : %.c | include/config.h
${QUIET}${CC} ${INCLUDES} ${COMMON_FLAGS} ${CFLAGS} -c -o $@ ${@:.o=.c}
${QUIET}${OBJCOPY} --rename-section .text=.irom0.text --rename-section .literal=.irom0.literal $@