Mercurial > mplayer.hg
annotate libvo/Makefile @ 21534:6bee9fab79f6
Fix ppc without altivec compilation
author | reimar |
---|---|
date | Sat, 09 Dec 2006 18:09:41 +0000 |
parents | 254e55a37c6d |
children | 8bcff5c7e387 |
rev | line source |
---|---|
1 | 1 |
19034 | 2 include ../config.mak |
1 | 3 |
21287
f423ce0a1c36
Move common code for generating multiple libraries to mpcommon.mak.
diego
parents:
21285
diff
changeset
|
4 LIBNAME2 = libosd.a |
f423ce0a1c36
Move common code for generating multiple libraries to mpcommon.mak.
diego
parents:
21285
diff
changeset
|
5 ifeq ($(MPLAYER),yes) |
1 | 6 LIBNAME = libvo.a |
21229 | 7 endif |
8 | |
21107
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
9 SRCS=aspect.c \ |
15772 | 10 geometry.c \ |
11 spuenc.c \ | |
12 video_out.c \ | |
13 vo_mpegpes.c \ | |
14 vo_null.c \ | |
15 vo_yuv4mpeg.c \ | |
19034 | 16 $(VO_SRCS) \ |
15772 | 17 |
21285 | 18 SRCS-$(EXTERNAL_VIDIX) += vosub_vidix.c |
19 SRCS-$(VIDIX) += vosub_vidix.c | |
20 | |
21107
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
21 SRCS2 = aclib.c \ |
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
22 osd.c \ |
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
23 sub.c \ |
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
24 |
21285 | 25 SRCS2-$(BITMAP_FONT) += font_load.c |
26 SRCS2-$(FREETYPE) += font_load_ft.c | |
16331
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
27 |
21393
df86c5cf22ae
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
28 CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil |
18864
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
29 |
21393
df86c5cf22ae
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
30 CFLAGS = -I../osdep |
1 | 31 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21229
diff
changeset
|
32 include ../mpcommon.mak |