diff TOOLS/subfont-c/Makefile @ 1607:7336606415f2

Implemented new Gaussian blur algorithm, extended font.desc format, optimized for speed and memory usage.
author zybi
date Tue, 21 Aug 2001 14:00:57 +0000
parents 842c29861e25
children 1bf2c3dbc36e
line wrap: on
line diff
--- a/TOOLS/subfont-c/Makefile	Tue Aug 21 12:52:01 2001 +0000
+++ b/TOOLS/subfont-c/Makefile	Tue Aug 21 14:00:57 2001 +0000
@@ -1,16 +1,19 @@
-
 include ../../config.mak
 
 LDLIBS=-lm $(shell freetype-config --libs)
 CFLAGS=$(OPTFLAGS) $(shell freetype-config --cflags)
 
-#CFLAGS+=-DOLD_FREETYPE2
+#CFLAGS+=-O0			# for RedHat's gcc-2.96-95
+#CFLAGS+=-DOLD_FREETYPE2	# for FreeType 2.0.1
 #CFLAGS+=-g
 #CFLAGS+=-DDEBUG
+#CFLAGS+=-DNEW_DESC
 
 
 subfont:	subfont.o
 
+subfont.o:	subfont.c Makefile
+
 subfont.S:	subfont.c
 	$(CC) $(CFLAGS) -S $^ -o $@