Mercurial > mplayer.hg
annotate TOOLS/Makefile @ 16099:629c54dc7e0d
support for rectangular and streaming textures.
author | reimar |
---|---|
date | Tue, 26 Jul 2005 10:16:18 +0000 |
parents | 7b06396ac8b3 |
children | 78f69659c797 |
rev | line source |
---|---|
13574
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
1 include ../config.mak |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
2 |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
3 CFLAGS = -I.. |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
4 |
15773
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
5 OBJS = alaw-gen \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
6 asfinfo \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
7 avi-fix \ |
15890 | 8 avisubdump \ |
15773
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
9 bios2dump \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
10 cpuinfo \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
11 dump_mp4 \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
12 mem2dump \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
13 movinfo \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
14 png2raw \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
15 subrip \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
16 fastmemcpybench \ |
7bae32bc0ed7
Avoid overly long lines to conform with the new general Makefile style.
diego
parents:
13785
diff
changeset
|
17 vivodump \ |
12962 | 18 |
19 all: $(OBJS) | |
20 | |
21 png2raw: png2raw.c | |
13574
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
22 $(CC) png2raw.c -o png2raw -lpng |
12962 | 23 |
24 subrip: subrip.c | |
13574
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
25 $(CC) $(CFLAGS) -g -o subrip subrip.c ../vobsub.o ../spudec.o ../mp_msg.o ../unrarlib.o ../postproc/swscale.o ../postproc/rgb2rgb.o ../postproc/yuv2rgb.o ../libmpcodecs/img_format.o -lm |
12962 | 26 |
27 vivodump: vivodump.c | |
13574
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
28 $(CC) $(CFLAGS) -o vivodump vivodump.c ../mp_msg.o ../libmpdemux/libmpdemux.a |
12962 | 29 |
30 fastmemcpybench: fastmemcpybench.c | |
13574
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
31 $(CC) $(CFLAGS) -g ../libvo/aclib.o -DNAME=\"mmx\" -DHAVE_MMX fastmemcpybench.c -o fastmem-mmx |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
32 $(CC) $(CFLAGS) -g ../libvo/aclib.o -DNAME=\"k6\ \" -DHAVE_3DNOW -DHAVE_MMX fastmemcpybench.c -o fastmem-k6 |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
33 $(CC) $(CFLAGS) -g ../libvo/aclib.o -DNAME=\"k7\ \" -DHAVE_MMX2 -DHAVE_3DNOW -DHAVE_MMX fastmemcpybench.c -o fastmem-k7 |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
34 $(CC) $(CFLAGS) -g ../libvo/aclib.o -DNAME=\"sse\" -DHAVE_MMX2 -DHAVE_SSE -DHAVE_MMX fastmemcpybench.c -o fastmem-sse |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
35 $(CC) $(CFLAGS) -g ../libvo/aclib.o -DNAME=\"mga-mmx\" -DHAVE_MGA -DHAVE_MMX fastmemcpybench.c -o fastmem2-mmx |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
36 $(CC) $(CFLAGS) -g ../libvo/aclib.o -DNAME=\"mga-k6\ \" -DHAVE_MGA -DHAVE_3DNOW -DHAVE_MMX fastmemcpybench.c -o fastmem2-k6 |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
37 $(CC) $(CFLAGS) -g ../libvo/aclib.o -DNAME=\"mga-k7\ \" -DHAVE_MGA -DHAVE_MMX2 -DHAVE_3DNOW -DHAVE_MMX fastmemcpybench.c -o fastmem2-k7 |
ae638e3c2808
Make Makefile conform to the general MPlayer style, alaw-gen added.
diego
parents:
12962
diff
changeset
|
38 $(CC) $(CFLAGS) -g ../libvo/aclib.o -DNAME=\"mga-sse\" -DHAVE_MGA -DHAVE_MMX2 -DHAVE_SSE -DHAVE_MMX fastmemcpybench.c -o fastmem2-sse |
12962 | 39 |
40 clean: | |
41 rm -f $(OBJS) | |
42 rm -f fastmem-mmx fastmem-k6 fastmem-k7 fastmem-sse fastmem2-mmx fastmem2-k6 fastmem2-k7 fastmem2-sse |