Mercurial > mplayer.hg
annotate TOOLS/mpfc/Makefile @ 6092:1529f01e8108
Added support for asf mmst protocol.
Implementation taken from the xine-mms plugin made by majormms
Modified to work with mplayer by Abhijeet Phatak <abhijeetphatak@yahoo.com>
author | bertrand |
---|---|
date | Tue, 14 May 2002 22:31:21 +0000 |
parents | a721a2b91d3d |
children |
rev | line source |
---|---|
1155 | 1 |
2 TARGET = mpfc-ce mpfc-kr | |
3 | |
4 LIBS=-lgd -lttf -lpng | |
5 | |
6 all: $(TARGET) | |
7 | |
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 | 10 |
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 | 13 |
14 clean: | |
15 -rm -f $(TARGET) |