annotate TOOLS/Makefile @ 18715:30d7ddf08889

Fix window position when changing videos while in fullscreen and for window managers that modify position on Map. Oked by Alexander Strasser.
author reimar
date Thu, 15 Jun 2006 08:00:37 +0000
parents c127ce678083
children 06e4c7737aa7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
7b06396ac8b3 avisubdump
ranma
parents: 15773
diff changeset
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 dump_mp4 \
7bae32bc0ed7 Avoid overly long lines to conform with the new general Makefile style.
diego
parents: 13785
diff changeset
11 mem2dump \
7bae32bc0ed7 Avoid overly long lines to conform with the new general Makefile style.
diego
parents: 13785
diff changeset
12 movinfo \
7bae32bc0ed7 Avoid overly long lines to conform with the new general Makefile style.
diego
parents: 13785
diff changeset
13 png2raw \
7bae32bc0ed7 Avoid overly long lines to conform with the new general Makefile style.
diego
parents: 13785
diff changeset
14 subrip \
7bae32bc0ed7 Avoid overly long lines to conform with the new general Makefile style.
diego
parents: 13785
diff changeset
15 vivodump \
16298
78f69659c797 Add D-Cinema Audio and Video conversion programs
reimar
parents: 15890
diff changeset
16 302m_convert \
78f69659c797 Add D-Cinema Audio and Video conversion programs
reimar
parents: 15890
diff changeset
17 360m_convert \
12962
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
18
17015
91d141ec88bb fastmemcpybench and cpuinfo are x86-specific.
diego
parents: 16298
diff changeset
19 ifeq ($(TARGET_ARCH_X86),yes)
91d141ec88bb fastmemcpybench and cpuinfo are x86-specific.
diego
parents: 16298
diff changeset
20 OBJS += cpuinfo fastmemcpybench
91d141ec88bb fastmemcpybench and cpuinfo are x86-specific.
diego
parents: 16298
diff changeset
21 endif
91d141ec88bb fastmemcpybench and cpuinfo are x86-specific.
diego
parents: 16298
diff changeset
22
12962
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
23 all: $(OBJS)
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
24
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
25 png2raw: png2raw.c
17942
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
26 $(CC) $< -o $@ -lpng
12962
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
27
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
28 subrip: subrip.c
17943
c127ce678083 cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents: 17942
diff changeset
29 $(CC) $(CFLAGS) -g -o $@ $< ../vobsub.o ../spudec.o ../mp_msg.o \
c127ce678083 cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents: 17942
diff changeset
30 ../unrarlib.o ../postproc/swscale.o ../postproc/rgb2rgb.o \
c127ce678083 cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents: 17942
diff changeset
31 ../postproc/yuv2rgb.o ../libmpcodecs/img_format.o -lm
12962
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
32
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
33 vivodump: vivodump.c
17942
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
34 $(CC) $(CFLAGS) -o $@ $< ../mp_msg.o ../libmpdemux/libmpdemux.a
12962
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
35
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
36 fastmemcpybench: fastmemcpybench.c
17942
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
37 $(CC) $(CFLAGS) -g $< -o fastmem-mmx ../libvo/aclib.o -DNAME=\"mmx\" -DHAVE_MMX
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
38 $(CC) $(CFLAGS) -g $< -o fastmem-k6 ../libvo/aclib.o -DNAME=\"k6\ \" -DHAVE_MMX -DHAVE_3DNOW
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
39 $(CC) $(CFLAGS) -g $< -o fastmem-k7 ../libvo/aclib.o -DNAME=\"k7\ \" -DHAVE_MMX -DHAVE_3DNOW -DHAVE_MMX2
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
40 $(CC) $(CFLAGS) -g $< -o fastmem-sse ../libvo/aclib.o -DNAME=\"sse\" -DHAVE_MMX -DHAVE_SSE -DHAVE_MMX2
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
41 $(CC) $(CFLAGS) -g $< -o fastmem2-mmx ../libvo/aclib.o -DNAME=\"mga-mmx\" -DHAVE_MGA -DHAVE_MMX
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
42 $(CC) $(CFLAGS) -g $< -o fastmem2-k6 ../libvo/aclib.o -DNAME=\"mga-k6\ \" -DHAVE_MGA -DHAVE_MMX -DHAVE_3DNOW
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
43 $(CC) $(CFLAGS) -g $< -o fastmem2-k7 ../libvo/aclib.o -DNAME=\"mga-k7\ \" -DHAVE_MGA -DHAVE_MMX -DHAVE_3DNOW -DHAVE_MMX2
f2868534283d Simplify rules with common make constructs.
diego
parents: 17941
diff changeset
44 $(CC) $(CFLAGS) -g $< -o fastmem2-sse ../libvo/aclib.o -DNAME=\"mga-sse\" -DHAVE_MGA -DHAVE_MMX -DHAVE_SSE -DHAVE_MMX2
12962
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
45
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
46 clean:
789f9488bd0d Makefile replacement for compile script
diego
parents:
diff changeset
47 rm -f $(OBJS)
17941
d763ba702406 Simplify clean rule.
diego
parents: 17015
diff changeset
48 rm -f fastmem-* fastmem2-*