view TOOLS/mpfc/Makefile @ 19327:e29f5544e2a0

Fix libcdio test after r19200, the detected include dir was not stored.
author diego
date Fri, 04 Aug 2006 23:42:17 +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)