all: dates apy

dates:
	gcc -g -Wall -O2 -c dates.c
apy:
	gcc -g -Wall -O2 -lm -lgd dates.o apy.c -o apy
clean:
	rm -f dates.o apy