Mercurial > mplayer.hg
annotate libvo/Makefile @ 22679:604a0943980f
add ffdca decoder
author | compn |
---|---|
date | Sat, 17 Mar 2007 15:28:02 +0000 |
parents | c0348807eabd |
children | 435648b07244 |
rev | line source |
---|---|
19034 | 1 include ../config.mak |
1 | 2 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
3 LIBNAME_COMMON = libosd.a |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
4 LIBNAME_MPLAYER = libvo.a |
21229 | 5 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
6 SRCS_MPLAYER = aspect.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
7 geometry.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
8 spuenc.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
9 video_out.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
10 vo_mpegpes.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
11 vo_null.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
12 vo_yuv4mpeg.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
13 $(VO_SRCS) \ |
15772 | 14 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
15 SRCS_MPLAYER-$(EXTERNAL_VIDIX) += vosub_vidix.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
16 SRCS_MPLAYER-$(VIDIX) += vosub_vidix.c |
21285 | 17 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
18 SRCS_COMMON = aclib.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
19 osd.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
20 sub.c \ |
21107
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
21 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
22 SRCS_COMMON-$(BITMAP_FONT) += font_load.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
23 SRCS_COMMON-$(FREETYPE) += font_load_ft.c |
16331
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
24 |
21393
df86c5cf22ae
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
25 CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil |
18864
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
26 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21229
diff
changeset
|
27 include ../mpcommon.mak |