summaryrefslogtreecommitdiffstats
path: root/makefont/Makefile
blob: 28b5601511562b054bc1750824dbd6585132ac86 (plain)
1
2
3
4
5
6
7
8
9
10
11
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