Mercurial > mplayer.hg
view TOOLS/subfont-c/Makefile @ 21521:b210a229fbcb
General reformatting round:
- fix some " -> "
- reindent with more consistency
- visual markup of <sect?> tags
- break overly long lines
- add missing <replaceable> tags in examples
- cola truck standing by
author | torinthiel |
---|---|
date | Fri, 08 Dec 2006 11:38:06 +0000 |
parents | c304e5836276 |
children |
line wrap: on
line source
MPROOT=../.. include $(MPROOT)/config.mak LDLIBS=-lm $(MPROOT)/osdep/timer-lx.o $(shell freetype-config --libs) CFLAGS=$(OPTFLAGS) $(shell freetype-config --cflags) -I$(MPROOT) #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 $(CC) $(CFLAGS) -c $< -o $@ subfont.S: subfont.c $(CC) $(CFLAGS) -S $< -o $@ clean: rm -f subfont subfont.o subfont.S core