13 lines
179 B
Makefile
13 lines
179 B
Makefile
INCDIR = -I/usr/include/freetype2
|
|
LIBS = -lfreetype
|
|
|
|
CFLAGS += $(INCDIR)
|
|
|
|
all : neofont
|
|
|
|
neofont : neofont.o
|
|
$(CC) -o neofont $(LIBS) $<
|
|
|
|
clean :
|
|
@rm -f neofont *.o *.asc *.gbk
|