all : test.exe CFLAGS:=-O2 LDFLAGS:=-lm test.exe : test.o graphics.o gcc $^ $(LDFLAGS) -o $@ clean : del *.exe del *.o