comparison libmenu/Makefile @ 8224:fefc56153615

Fix freetype. Freetype is highly recommended for a nice output ;)
author albeu
date Mon, 18 Nov 2002 00:09:37 +0000
parents b31caec933e9
children 440301fef3fe
comparison
equal deleted inserted replaced
8223:a88e53ef3029 8224:fefc56153615
10 10
11 .SUFFIXES: .c .o 11 .SUFFIXES: .c .o
12 12
13 13
14 .c.o: 14 .c.o:
15 $(CC) -c $(CFLAGS) -o $@ $< 15 $(CC) -c $(CFLAGS) $(FREETYPE_INC) -o $@ $<
16 16
17 $(LIBNAME): $(OBJS) 17 $(LIBNAME): $(OBJS)
18 $(AR) r $(LIBNAME) $(OBJS) 18 $(AR) r $(LIBNAME) $(OBJS)
19 19
20 all: $(LIBNAME) 20 all: $(LIBNAME)