14 lines
225 B
Makefile
14 lines
225 B
Makefile
|
ifndef TARGET
|
||
|
TARGET=sensinode
|
||
|
endif
|
||
|
|
||
|
# Make absolutely certain that you specify your device here
|
||
|
DEFINES+=MODEL_N740
|
||
|
|
||
|
CONTIKI_PROJECT = flash
|
||
|
|
||
|
all: $(CONTIKI_PROJECT)
|
||
|
|
||
|
CONTIKI = ../../..
|
||
|
include $(CONTIKI)/Makefile.include
|