view TOOLS/mpfc/Makefile @ 10685:f54ffeb29447

Support for linked seek heads, multiple seek heads, multiple cues.
author mosu
date Sun, 24 Aug 2003 12:34:42 +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)