view TOOLS/mpfc/Makefile @ 1346:d6e6132bff35

AUDIO_ENCODING_LINEAR8 format is not available on sunos 5.5. Format is unsupported in mplayer for now, to get the code compiled on that old version of the OS.
author jkeil
date Thu, 19 Jul 2001 20:04:54 +0000
parents be5942e385e5
children a721a2b91d3d
line wrap: on
line source


TARGET = mpfc-ce mpfc-kr

LIBS=-lgd -lttf -lpng

all: $(TARGET)

mpfc-ce: mpfc-ce.c
	gcc -Wall -O2 -o $@ $< $(LIBS)

mpfc-kr: mpfc-kr.c
	gcc -Wall -O2 -o $@ $< $(LIBS)

clean:
	-rm -f $(TARGET)