view TOOLS/mpfc/Makefile @ 8996:c5772dde2914

- restore old behaviour of -channels,-srate,-format - disable audio if libaf init failed (to avoid sig11 in decoder)
author arpi
date Sat, 18 Jan 2003 19:08: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)