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