--- /dev/null
+# example Makefile for your project
+
+# change this to the path to your Makefile.properties
+# (see Makefile.properties.example for a template)
+include Makefile.properties
+
+CONTIKI_PROJECT=yourproject
+
+all: $(CONTIKI_PROJECT)
+
+include $(CONTIKI)/Makefile.include
+
--- /dev/null
+# Rename or copy file this to Makefile.properties
+
+# Path to your contiki-inga installation
+# for example, git clone from git://git.ibr.cs.tu-bs.de/contiki-inga.git
+CONTIKI=/home/rohieb/Projects/contiki-inga.git
+TARGET=inga
+
--- /dev/null
+include ../../Makefile.properties
+CONTIKI_PROJECT=ledtest
+
+all: $(CONTIKI_PROJECT)
+
+include $(CONTIKI)/Makefile.include
+
--- /dev/null
+#include <contiki.h>
+#include <leds.h>
+#include <stdio.h>
+
+PROCESS(ledtest, "LED test");
+AUTOSTART_PROCESSES(&ledtest);
+
+PROCESS_THREAD(ledtest, ev, data) {
+ PROCESS_BEGIN();
+
+ leds_init();
+ leds_off(LEDS_ALL);
+
+ static struct etimer led_timer;
+ static char i;
+ for(i = 0; 1; i++) {
+ etimer_set(&led_timer, CLOCK_SECOND);
+
+ if((i % 2)) {
+ leds_toggle(LEDS_GREEN);
+ }
+ leds_toggle(LEDS_YELLOW);
+
+ PROCESS_WAIT_EVENT();
+ }
+
+ PROCESS_END();
+}