mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
15 lines
263 B
Makefile
15 lines
263 B
Makefile
|
ifndef TARGET
|
||
|
TARGET=z1sp
|
||
|
endif
|
||
|
|
||
|
CONTIKI_PROJECT = test-potentiometer
|
||
|
CONTIKI_SOURCEFILES += cc2420-arch.c
|
||
|
PROJECT_SOURCEFILES = sky-sensors.c potentiometer-sensor.c
|
||
|
APPS=serial-shell
|
||
|
|
||
|
|
||
|
all: $(CONTIKI_PROJECT)
|
||
|
|
||
|
CONTIKI = ../..
|
||
|
include $(CONTIKI)/Makefile.include
|