Mercurial > mplayer.hg
view TOOLS/subfont-c/Makefile @ 21167:e3d1a0ca75f1
r21078: add a link to Michael's de-interlacing filters, and replace the crappy
pp=fd video filter with yadif as it's soooo much better
r21079: Add a new MPEG encoding example using lavf
r21152: typo: Bitrate is printed in kb/s, not Mb/s on the status line.
r21153: Miscellaneous updates for the introduction and the requirements section.
r21154: Remove outdated and superfluous sound card section.
r21155: Remove outdated and superfluous video cards section.
r21168: x264 supports interlaced encoding for some time
author | kraymer |
---|---|
date | Thu, 23 Nov 2006 22:51:42 +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