blob: 39364a86535e4c21e31b6eb6ee13e9bc93d7eca4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
include ../config.mak
LIBNAME_COMMON = liba52.a
SRCS_COMMON = crc.c \
resample.c \
bit_allocate.c \
bitstream.c \
downmix.c \
imdct.c \
parse.c \
include ../mpcommon.mak
test: $(LIBNAME_COMMON) test.c
$(CC) $(CFLAGS) test.c ../cpudetect.c -o test ../osdep/libosdep.a ./liba52.a -lm
distclean::
rm -f test
|