CFLAGS = -g -Wall

sbf: sbf.o
	$(CC) -o sbf sbf.o -lm

tar:
	tar -cvf sbf.tar *.c *.pl Makefile 

clean:
	/bin/rm -rf *.o sbf


