16 lines
537 B
Makefile
16 lines
537 B
Makefile
DEFINES+=PROJECT_CONF_H=\"project-conf.h\"
|
|
|
|
CONTIKI_PROJECT = zoul-demo test-tsl2563 test-sht25 test-pwm test-power-mgmt
|
|
CONTIKI_PROJECT += test-bmp085-bmp180 test-motion test-rotation-sensor
|
|
CONTIKI_PROJECT += test-grove-light-sensor test-grove-loudness-sensor
|
|
CONTIKI_PROJECT += test-weather-meter
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += tsl2563.c sht25.c bmpx8x.c motion-sensor.c
|
|
CONTIKI_TARGET_SOURCEFILES += adc-sensors.c weather-meter.c
|
|
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
CONTIKI = ../../..
|
|
CONTIKI_WITH_RIME = 1
|
|
include $(CONTIKI)/Makefile.include
|