From a098cdb5dfd6f05952ff8d22673ff01281134cb7 Mon Sep 17 00:00:00 2001 From: "Enric M. Calvo" Date: Thu, 3 Mar 2011 17:19:06 +0100 Subject: [PATCH] added makefile --- examples/z1/example2/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/z1/example2/Makefile diff --git a/examples/z1/example2/Makefile b/examples/z1/example2/Makefile new file mode 100644 index 000000000..66023ece8 --- /dev/null +++ b/examples/z1/example2/Makefile @@ -0,0 +1,14 @@ +CONTIKI = ../../.. + +ifndef TARGET +TARGET=z1 +endif + +CONTIKI_PROJECT = test-phidgets blink test-adxl345 tmp102-test test-battery test-sht11 #test-potent +CONTIKI_SOURCEFILES += cc2420-arch.c sensors.c sht11.c +PROJECT_SOURCEFILES = i2cmaster.c tmp102.c adxl345.c battery-sensor.c sky-sensors.c #potentiometer-sensor.c +all: example-unicast2 + +include $(CONTIKI)/Makefile.include + +