CFLAGS = `freetype-config --cflags`
LIBS = `freetype-config --libs` -lm

all: ttf2fft

ttf2fft: ttf2fft.cxx
	gcc -o ttf2fft *.cxx $(CFLAGS) $(LIBS)
