diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-03 09:25:51 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-03 09:25:51 +0100 |
commit | ff2c23e32fc4fdf8427b712a056a9c05f44c76af (patch) | |
tree | 59705d57129bc379a7f476c6f23736aa8bdc6ddf /src/arch/esp8266/Makefile.inc | |
parent | 463eea4804253970199bd9b705768b8dde83deb7 (diff) |
esp8266: add counter driver
Diffstat (limited to 'src/arch/esp8266/Makefile.inc')
-rw-r--r-- | src/arch/esp8266/Makefile.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/arch/esp8266/Makefile.inc b/src/arch/esp8266/Makefile.inc index 1df3e5a..18547a6 100644 --- a/src/arch/esp8266/Makefile.inc +++ b/src/arch/esp8266/Makefile.inc @@ -33,6 +33,10 @@ ifneq ($(findstring stdin,${arch_drivers}), ) CXX_TARGETS += src/arch/esp8266/driver/stdin.cc endif +ifneq ($(findstring counter,${arch_drivers}), ) + CXX_TARGETS += src/arch/esp8266/driver/counter.cc +endif + .cc.o: ${QUIET}${CXX} ${INCLUDES} ${COMMON_FLAGS} ${CXXFLAGS} -c -o $@ ${@:.o=.cc} ${QUIET}${OBJCOPY} --rename-section .text=.irom0.text --rename-section .literal=.irom0.literal $@ @@ -47,7 +51,7 @@ build/system.ar: ${OBJECTS} build/system.elf: build/system.ar ${CC} -L${SDK_BASE}/lib -T${SDK_BASE}/lib/eagle.app.v6-derf.ld ${LDFLAGS} \ -Wl,--start-group -lc -lgcc -lhal -lpp -lphy -lnet80211 -llwip -lwpa \ - -lmain $< -Wl,--end-group -o $@ + -lmain -flto $< -Wl,--end-group -o $@ build/0x00000.bin: build/system.elf ${ESPTOOL} --chip esp8266 elf2image -o build/ $< |