summaryrefslogtreecommitdiffstats
path: root/libvo/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-13 12:10:57 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-13 12:10:57 +0000
commit60b39e278621374569859f78170c1c170bf84c85 (patch)
treea534407525d96137730d8880e7dfe07d93f77f60 /libvo/Makefile
parent39414b500ab130de25730121b5a5bb4c03f4ad32 (diff)
downloadmpv-60b39e278621374569859f78170c1c170bf84c85.tar.bz2
mpv-60b39e278621374569859f78170c1c170bf84c85.tar.xz
Give more descriptive names to the source and library variables and split
between common, MPlayer-specific and MEncoder-specific parts. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22546 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/Makefile')
-rw-r--r--libvo/Makefile18
1 files changed, 8 insertions, 10 deletions
diff --git a/libvo/Makefile b/libvo/Makefile
index 866162b17c..48af0d8d46 100644
--- a/libvo/Makefile
+++ b/libvo/Makefile
@@ -1,12 +1,10 @@
include ../config.mak
-LIBNAME2 = libosd.a
-ifeq ($(MPLAYER),yes)
-LIBNAME = libvo.a
-endif
+LIBNAME_COMMON = libosd.a
+LIBNAME_MPLAYER = libvo.a
-SRCS=aspect.c \
+SRCS_MPLAYER = aspect.c \
geometry.c \
spuenc.c \
video_out.c \
@@ -15,15 +13,15 @@ SRCS=aspect.c \
vo_yuv4mpeg.c \
$(VO_SRCS) \
-SRCS-$(EXTERNAL_VIDIX) += vosub_vidix.c
-SRCS-$(VIDIX) += vosub_vidix.c
+SRCS_MPLAYER-$(EXTERNAL_VIDIX) += vosub_vidix.c
+SRCS_MPLAYER-$(VIDIX) += vosub_vidix.c
-SRCS2 = aclib.c \
+SRCS_COMMON = aclib.c \
osd.c \
sub.c \
-SRCS2-$(BITMAP_FONT) += font_load.c
-SRCS2-$(FREETYPE) += font_load_ft.c
+SRCS_COMMON-$(BITMAP_FONT) += font_load.c
+SRCS_COMMON-$(FREETYPE) += font_load_ft.c
CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil