BINARIES=example ramtest soundbus
all: $(BINARIES)

%: %.c
	gcc -std=c99 -lofapi $< -o $@
clean:
	rm -f $(BINARIES)

.PHONY: clean all
