view TOOLS/mpfc/Makefile @ 16876:9dd44ff7ec32

Provide DEMUXER_CTRL_GET_TIME_LENGTH and DEMUXER_CTRL_GET_PERCENT_POS. Might need some more fine-tuning. together with rev. 1.318 of mencoder.c fixes bug #116
author reimar
date Sun, 30 Oct 2005 09:13:32 +0000
parents a721a2b91d3d
children
line wrap: on
line source


TARGET = mpfc-ce mpfc-kr

LIBS=-lgd -lttf -lpng

all: $(TARGET)

mpfc-ce: mpfc-ce.c
	$(CC) -Wall -O2 -o $@ $< $(LIBS)

mpfc-kr: mpfc-kr.c
	$(CC) -Wall -O2 -o $@ $< $(LIBS)

clean:
	-rm -f $(TARGET)