mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-04 13:06:38 +00:00
16 lines
279 B
Makefile
16 lines
279 B
Makefile
|
|
burn-nodeid-%.ihex:
|
|
$(MAKE) nodeid=$* burn-nodeid.ihex && mv burn-nodeid.ihex $@
|
|
|
|
burn-nodeids: $(foreach NODEID, 41 42 43 44 45 46 47 48, burn-nodeid-$(NODEID).ihex)
|
|
|
|
ifndef CONTIKI
|
|
CONTIKI = ../../..
|
|
endif
|
|
|
|
ifndef TARGET
|
|
TARGET=sky
|
|
endif
|
|
|
|
include $(CONTIKI)/Makefile.include
|