4ed5c50a4e
Move the CFS and Coffee examples from sky to a common cfs-coffee folder in order to have unified examples for multiple platforms.
17 lines
353 B
Makefile
17 lines
353 B
Makefile
CONTIKI = ../..
|
|
ifndef TARGET
|
|
TARGET=sky
|
|
endif
|
|
|
|
all: blink sky-collect #rt-leds test-button tcprudolph0
|
|
|
|
%.tgz: %.ihex
|
|
mkdir $(basename $<) ; \
|
|
mv $< $(basename $<) ; \
|
|
echo $(basename $<)/$(basename $<).ihex 600 > $(basename $<)/runfile ; \
|
|
tar czf $@ $(basename $<)
|
|
|
|
CONTIKI_WITH_IPV4 = 1
|
|
CONTIKI_WITH_RIME = 1
|
|
include $(CONTIKI)/Makefile.include
|