view TOOLS/mpfc/Makefile @ 14364:229df834d3f6

creatded section for codec specific encoding options divx4 moved in (as it was completely removed a few commits ago), others are to follow
author kraymer
date Tue, 04 Jan 2005 22:39:38 +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)