colorchord/embedded8266/Makefile

25 lines
546 B
Makefile
Raw Normal View History

2016-08-19 00:13:41 +02:00
include user.cfg
2016-08-21 15:33:44 +02:00
-include esp82xx/common.mf
2016-08-27 05:50:57 +02:00
#SDK:=/home/cnlohr/esp8266/esp_iot_sdk_v1.5.1
2016-08-21 15:33:44 +02:00
-include esp82xx/main.mf
% :
$(warning This is the empty rule. Something went wrong.)
@true
2016-08-03 16:27:10 +02:00
2016-08-19 00:13:41 +02:00
SRCS += user/ws2812_i2s.c \
2015-07-27 09:34:00 +02:00
user/hpatimer.c \
2016-08-19 00:13:41 +02:00
user/adc.c \
2015-07-27 09:34:00 +02:00
../embeddedcommon/DFT32.c \
../embeddedcommon/embeddednf.c \
2016-08-19 00:13:41 +02:00
../embeddedcommon/embeddedout.c
2016-08-19 00:13:41 +02:00
LDFLAGS_CORE += -Wl,-Map,output.map
ifndef TARGET
2016-08-21 15:33:44 +02:00
$(info Modules were not checked out... use git clone --recursive in the future. Pulling now.)
$(shell git submodule update --init --recursive)
endif
2016-08-21 15:33:44 +02:00