view TOOLS/mpfc/Makefile @ 17417:960b2fa1567e

function to read from a demuxer up to (and including) the specified 3-byte pattern.
author reimar
date Tue, 17 Jan 2006 20:04:49 +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)