view TOOLS/mpfc/Makefile @ 17757:9376e7b470d6

10l to Guillaume. It's <option>, not <options>. xmllint would've told you that.
author rathann
date Mon, 06 Mar 2006 18:40:36 +0000 (2006-03-06)
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)