diff liba52/Makefile @ 22528:8bcff5c7e387

Give more descriptive names to the source and library variables and split between common, MPlayer-specific and MEncoder-specific parts.
author diego
date Tue, 13 Mar 2007 12:10:57 +0000
parents 29ed2d73c189
children 090ec2169aee
line wrap: on
line diff
--- a/liba52/Makefile	Tue Mar 13 10:33:33 2007 +0000
+++ b/liba52/Makefile	Tue Mar 13 12:10:57 2007 +0000
@@ -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 @@
 
 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::