
PROG=fbtest

$(PROG): fbtest.c
	$(CC) -o $@ $<

clean:
	rm -f $(PROG) *.err *.map *.o
