Removed redundant targets
This commit is contained in:
parent
cbca96c545
commit
199a14150b
|
@ -1,4 +1,5 @@
|
||||||
CONTIKI_PROJECT = telnet-webserver
|
CONTIKI_PROJECT = telnet-webserver
|
||||||
|
DEFAULT_TARGET=sky
|
||||||
all: $(CONTIKI_PROJECT)
|
all: $(CONTIKI_PROJECT)
|
||||||
|
|
||||||
APPS = telnetd webserver
|
APPS = telnetd webserver
|
||||||
|
|
|
@ -4,14 +4,6 @@ all: $(CONTIKI_PROJECT)
|
||||||
APPS = shell
|
APPS = shell
|
||||||
CONTIKI = ../..
|
CONTIKI = ../..
|
||||||
|
|
||||||
ifdef MOTE
|
|
||||||
login:
|
|
||||||
$(SERIALDUMP) -b115200 /dev/com$(word $(MOTE), $(CMOTES))
|
|
||||||
else
|
|
||||||
login:
|
|
||||||
$(SERIALDUMP) -b115200 /dev/com$(firstword $(CMOTES))
|
|
||||||
endif
|
|
||||||
|
|
||||||
%.shell-upload: %.ce
|
%.shell-upload: %.ce
|
||||||
(echo; sleep 4; echo "~K"; sleep 4; \
|
(echo; sleep 4; echo "~K"; sleep 4; \
|
||||||
echo "dec64 | write file | null"; sleep 4; \
|
echo "dec64 | write file | null"; sleep 4; \
|
||||||
|
@ -107,11 +99,3 @@ collect-energy:
|
||||||
echo 'collect | timestamp | write file | hd &') | make login
|
echo 'collect | timestamp | write file | hd &') | make login
|
||||||
|
|
||||||
include $(CONTIKI)/Makefile.include
|
include $(CONTIKI)/Makefile.include
|
||||||
|
|
||||||
sizeplot:
|
|
||||||
msp430-size $(OBJECTDIR)/*.o | $(CONTIKI)/tools/sky/check-size > size-data && \
|
|
||||||
gnuplot $(CONTIKI)/tools/sky/plot-size && gv size.pdf
|
|
||||||
|
|
||||||
sizeacro:
|
|
||||||
msp430-size $(OBJECTDIR)/*.o | $(CONTIKI)/tools/sky/check-size > size-data && \
|
|
||||||
gnuplot $(CONTIKI)/tools/sky/plot-size && rundll32 url.dll,FileProtocolHandler size.pdf
|
|
||||||
|
|
|
@ -3,11 +3,12 @@ ifndef TARGET
|
||||||
TARGET=sky
|
TARGET=sky
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#APPS=rudolph
|
|
||||||
|
|
||||||
all: blink sky-collect #rt-leds test-button test-cfs tcprudolph0
|
all: blink sky-collect #rt-leds test-button test-cfs tcprudolph0
|
||||||
|
|
||||||
serialdump:
|
%.tgz: %.ihex
|
||||||
$(SERIALDUMP) -b115200 /dev/com$(firstword $(CMOTES)) | $(CONTIKI)/tools/timestamp | tee serialdump-`date +%Y%m%d-%H%M`
|
mkdir $(basename $<) ; \
|
||||||
|
mv $< $(basename $<) ; \
|
||||||
|
echo $(basename $<)/$(basename $<).ihex 600 > $(basename $<)/runfile ; \
|
||||||
|
tar czf $@ $(basename $<)
|
||||||
|
|
||||||
include $(CONTIKI)/Makefile.include
|
include $(CONTIKI)/Makefile.include
|
||||||
|
|
Loading…
Reference in a new issue