Mercurial > mplayer.hg
view TOOLS/subfont-c/Makefile @ 17274:13b99f89969f
check the intermediate audio buffer
otherwise, data can get stuck between the demuxer and filter layer
causing a premature end of audio.
author | henry |
---|---|
date | Sat, 31 Dec 2005 07:37:37 +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