Makefile that produces a bunch of .ihex files for burning node IDs into Tmote Sky nodes

This commit is contained in:
adamdunkels 2007-10-25 12:07:17 +00:00
parent 09a9f0d00a
commit b96f9cb553

View file

@ -0,0 +1,15 @@
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