# object files 
OBJFILES = cyfont.o

# Special macros:
#   $@ is the name of the file to be made
#   $< is the name of the related file that caused the action



cyfont.exe : $(OBJFILES)
	gcc.exe -o cyfont.exe $(OBJFILES)

%.o: %.c
	gcc.exe -O2 -Wall  -c -o $@ $<



clean:
	rm *.o 

