PROG = fbtest OBJS = fbtest.o fbtools.o CFLAGS = -O3 -fomit-frame-pointer $(PROG): $(OBJS) gcc $(OBJS) -o $@ clean: rm -f *.o $(PROG) .