minimal testprog (not working)
diff --git a/minimal/Makefile b/minimal/Makefile
new file mode 100644
index 0000000..18c1589
--- /dev/null
+++ b/minimal/Makefile
@@ -0,0 +1,7 @@
+
+
+default: 
+	arm-none-eabi-gcc -c -mcpu=cortex-m3 -mthumb -g test.c -o test.o
+	arm-none-eabi-ld -T test.ld test.o startup.o pio.o pmc.o -o test.elf
+	arm-none-eabi-as -mcpu=cortex-m3 -g startup.s -o startup.o
+	arm-none-eabi-objcopy -O binary test.elf test.bin