Makefile for automated nightly building of example code

This commit is contained in:
adamdunkels 2009-06-18 08:42:08 +00:00
parent 4c22ef33d0
commit 81786900f2
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
all:
@rm -f *.output
@echo Compiling on:
@uname -a
@$(MAKE) -s -k compile || cat *.output
compile: rime-examples energest-demo shell hello-world \
ipso-ipv6-raven jcreate multi-threading sky sky-ip sky-shell \
webserver-ipv6 webserver-ipv6-raven
energest-demo: example-energest-demo.sky
shell: example-example-shell.native example-example-shell.netsim
hello-world: example-hello-world.sky example-hello-world.native \
example-hello-world.netsim example-hello-world.minimal-net example-hello-world.msb430
rime-examples: example-rime.sky example-rime.netsim example-rime.esb
ipso-ipv6-raven: example-ipso-ipv6-raven.raven
jcreate: example-jcreate.sky
multi-threading: example-multi-threading.sky \
example-multi-threading.native example-multi-threading.msb430
sky: example-sky.sky
sky-ip: example-sky-ip.sky
sky-shell: example-sky-shell.sky
webserver-ipv6: example-webserver-ipv6.sky
webserver-ipv6-raven: example-webserver-ipv6-raven.avr-raven
example-%:
@((echo; echo ------------------- $* -------------------; \
cd ../../../examples/${basename $*} ; $(MAKE) TARGET=${subst .,,${suffix $*}} clean;\
($(MAKE) TARGET=${subst .,,${suffix $*}} > /dev/null 2>&1 ) ; \
$(MAKE) TARGET=${subst .,,${suffix $*}}) > $*.output 2>&1 && echo "$* succeeded" && rm $*.output) || \
(echo; echo "$* failed"; exit 1)
# (cd ../../../examples/${basename $*}; make TARGET=${subst .,,${suffix $*}})