view TOOLS/mpfc/Makefile @ 4940:098970f06dc2

patch by Nilmoni Deb <ndeb@ece.cmu.edu>: "Ok folks, I got it at last. It must have been a careless error caused during cut and paste. So here's the patch. " which is shortened to '10L' in mplayer dev's language ;)
author pl
date Tue, 05 Mar 2002 08:51:57 +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)