annotate TOOLS/mpfc/Makefile @ 19619:a83e5b8d2e63

Patch from Karolina Lindqvist <karolina.lindqvist@kramnet.se> "There is a bug in the zoran -vo zr driver, that makes the output garbled always. It also probably affects the zrmjpeg filter. This patch takes care of the problem." Patch tested and OK. And 10l to me, because this bug probably has existed for a looong time.
author rik
date Fri, 01 Sep 2006 18:49:40 +0000
parents a721a2b91d3d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1155
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
1
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
2 TARGET = mpfc-ce mpfc-kr
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
3
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
4 LIBS=-lgd -lttf -lpng
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
5
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
6 all: $(TARGET)
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
7
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
8 mpfc-ce: mpfc-ce.c
1395
a721a2b91d3d Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents: 1155
diff changeset
9 $(CC) -Wall -O2 -o $@ $< $(LIBS)
1155
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
10
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
11 mpfc-kr: mpfc-kr.c
1395
a721a2b91d3d Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents: 1155
diff changeset
12 $(CC) -Wall -O2 -o $@ $< $(LIBS)
1155
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
13
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
14 clean:
be5942e385e5 original and CE version of mpfc
arpi_esp
parents:
diff changeset
15 -rm -f $(TARGET)