diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-12-06 13:49:32 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-12-06 13:49:32 +0100 |
commit | e49ce1e6d726ba7d3e6f80a9608d80cab316df32 (patch) | |
tree | 3c60defa36fc6ba7c1bfa106e57eae6209f5122c /Makefile | |
parent | 82b779944d2c733d1db7a63a87452d9a5654a554 (diff) |
Add support for arduino-like loop function + blinky on esp8266
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,10 @@ CXXFLAGS = -std=c++14 TARGETS = src/os/main.cc +ifeq (${arduino}, 1) + COMMON_FLAGS += -DWITH_LOOP +endif + include src/arch/${arch}/Makefile.inc clean: arch_clean |