Mercurial > mplayer.hg
annotate libvo/Makefile @ 25657:dfeb8ea2a7a8
Add demuxer interface for attachments.
author | eugeni |
---|---|
date | Sat, 12 Jan 2008 01:12:36 +0000 |
parents | b0454664f1e0 |
children | 03e503db705a |
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-$(VIDIX) += vosub_vidix.c |
21285 | 16 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
17 SRCS_COMMON = aclib.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
18 osd.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
19 sub.c \ |
21107
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
20 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21420
diff
changeset
|
21 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
|
22 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
|
23 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21229
diff
changeset
|
24 include ../mpcommon.mak |
23067
3c89c681e0d6
Readd an explicit rule for Objective C files. Apparently only Apple's fork of
diego
parents:
22717
diff
changeset
|
25 |
3c89c681e0d6
Readd an explicit rule for Objective C files. Apparently only Apple's fork of
diego
parents:
22717
diff
changeset
|
26 %.o: %.m |
3c89c681e0d6
Readd an explicit rule for Objective C files. Apparently only Apple's fork of
diego
parents:
22717
diff
changeset
|
27 $(CC) $(CFLAGS) -c -o $@ $< |
23782
b0454664f1e0
Put a compilation fix bandaid in place for the png.h issue.
diego
parents:
23772
diff
changeset
|
28 |
b0454664f1e0
Put a compilation fix bandaid in place for the png.h issue.
diego
parents:
23772
diff
changeset
|
29 vo_png.o: CFLAGS := $(filter-out -I../libavcodec,$(CFLAGS)) |