all: genbbt

genbbt:
	$(CC) -O3 -o genbbt genbbt.c

clean:
	rm -f genbbt

.PHONY: all clean