annotate libvo/Makefile @ 22381:6cabac4d35b5

tv driver loading rework. As a side effect "-tv driver=help" option is implemented.
author voroshil
date Thu, 01 Mar 2007 18:38:00 +0000
parents 254e55a37c6d
children 8bcff5c7e387
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1
19034
9b3a8b48e5b3 Use only one global config.mak file.
diego
parents: 18864
diff changeset
2 include ../config.mak
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6 LIBNAME = libvo.a
21229
36046375aacd Don't compile libvo.a unless MPlayer is enabled.
diego
parents: 21222
diff changeset
7 endif
36046375aacd Don't compile libvo.a unless MPlayer is enabled.
diego
parents: 21222
diff changeset
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
d3d30585a9d2 Be more patch-friendly
ranma
parents: 15473
diff changeset
10 geometry.c \
d3d30585a9d2 Be more patch-friendly
ranma
parents: 15473
diff changeset
11 spuenc.c \
d3d30585a9d2 Be more patch-friendly
ranma
parents: 15473
diff changeset
12 video_out.c \
d3d30585a9d2 Be more patch-friendly
ranma
parents: 15473
diff changeset
13 vo_mpegpes.c \
d3d30585a9d2 Be more patch-friendly
ranma
parents: 15473
diff changeset
14 vo_null.c \
d3d30585a9d2 Be more patch-friendly
ranma
parents: 15473
diff changeset
15 vo_yuv4mpeg.c \
19034
9b3a8b48e5b3 Use only one global config.mak file.
diego
parents: 18864
diff changeset
16 $(VO_SRCS) \
15772
d3d30585a9d2 Be more patch-friendly
ranma
parents: 15473
diff changeset
17
21285
a396402b091b FFmpeg-style conditional dependency declaration
diego
parents: 21259
diff changeset
18 SRCS-$(EXTERNAL_VIDIX) += vosub_vidix.c
a396402b091b FFmpeg-style conditional dependency declaration
diego
parents: 21259
diff changeset
19 SRCS-$(VIDIX) += vosub_vidix.c
a396402b091b FFmpeg-style conditional dependency declaration
diego
parents: 21259
diff changeset
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
a396402b091b FFmpeg-style conditional dependency declaration
diego
parents: 21259
diff changeset
25 SRCS2-$(BITMAP_FONT) += font_load.c
a396402b091b FFmpeg-style conditional dependency declaration
diego
parents: 21259
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
31
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents: 21229
diff changeset
32 include ../mpcommon.mak