CC = gcc #DFLG = -g CFLAGS = $(DFLG) -O2 -Wall $(shell sdl-config --cflags) LDFLAGS = $(DFLG) $(shell sdl-config --libs) -lSDL_ttf all: makefont makefont: makefont.c clean: rm -f *.o makefont test: all ./makefont