# Makefile T. Braunl 2015, Compile all .c into .Demo (for sudo)
ALL:  $(patsubst %.c,%.Demo, $(wildcard *.c))
	
%.Demo: %.c /home/pi/eyebot/lib/libeyebot.a
	gccarm -g -o $*.Demo $*.c
	
clean:
	$(RM) *.Demo
