# Makefile T. Braunl 2015, Compile all .c into .demo
ALL:  $(patsubst %.c,%.x, $(wildcard *.c))
	
%.x: %.c
	gcc -Wall -o $* $*.c -L. -lradio
	
clean:
	$(RM) *.x
