summaryrefslogtreecommitdiffstats
path: root/liba52
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 /liba52
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 'liba52')
-rw-r--r--liba52/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/liba52/Makefile b/liba52/Makefile
index 0024c30a6a..a865235f43 100644
--- a/liba52/Makefile
+++ b/liba52/Makefile
@@ -1,9 +1,9 @@
-LIBNAME = liba52.a
+LIBNAME_COMMON = liba52.a
include ../config.mak
-SRCS = crc.c \
+SRCS_COMMON = crc.c \
resample.c \
bit_allocate.c \
bitstream.c \
@@ -13,7 +13,7 @@ SRCS = crc.c \
include ../mpcommon.mak
-test: $(LIBNAME) test.c
+test: $(LIBNAME_COMMON) test.c
$(CC) $(CFLAGS) test.c ../cpudetect.c -o test ../osdep/libosdep.a ./liba52.a -lm
distclean::