Mercurial > mplayer.hg
annotate libvo/Makefile @ 21294:b2eeabacef4d
There are no .s files in mp3lib/, remove the corresponding suffix rule.
author | diego |
---|---|
date | Mon, 27 Nov 2006 10:53:40 +0000 |
parents | f423ce0a1c36 |
children | 5fdf546b4e57 |
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 |
15291 | 28 OBJS_TEMP=$(basename $(SRCS)) |
29 OBJS=$(OBJS_TEMP:%=%.o) | |
1 | 30 |
21107
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
31 OBJS2=$(SRCS2:.c=.o) |
790256469dd7
Split libvo.a into two libs so that libosd.a can be used by MEncoder.
diego
parents:
21105
diff
changeset
|
32 |
21285 | 33 LIBAV_INC-$(CONFIG_LIBAVUTIL) += -I../libavutil |
18864
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
34 |
21285 | 35 SRCS += $(SRCS-yes) |
36 SRCS2 += $(SRCS2-yes) | |
37 LIBAV_INC += $(LIBAV_INC-yes) | |
17988 | 38 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21229
diff
changeset
|
39 CFLAGS = -I.. -I../osdep $(LIBAV_INC) |
1 | 40 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21229
diff
changeset
|
41 include ../mpcommon.mak |
1 | 42 |
15291 | 43 .m.o: |
44 $(CC) -c $(CFLAGS) -o $@ $< |