1CC	= cc
2CFLAGS	= -O2 $(shell sdl-config --cflags) -funroll-loops \
3		-fomit-frame-pointer -ffast-math -Wall
4
5founts:	founts.o
6	cc -o founts founts.o  -lm $(shell sdl-config --libs)
7
8founts.o: founts.c
9
10clean:
11	rm *.o founts
12
13test: founts
14	./founts
15