1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-12 01:46:16 +00:00
mpv/liba52/Makefile
diego cf4bf03dc2 Unify dep/depend targets.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21096 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-11-20 11:18:01 +00:00

52 lines
839 B
Makefile

LIBNAME = liba52.a
include ../config.mak
SRCS = crc.c \
resample.c \
bit_allocate.c \
bitstream.c \
downmix.c \
imdct.c \
parse.c \
OBJS = $(SRCS:.c=.o)
CFLAGS = -I.. $(OPTFLAGS)
.SUFFIXES: .c .o
# .PHONY: all clean
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
$(LIBNAME): $(OBJS)
$(AR) r $(LIBNAME) $(OBJS)
$(RANLIB) $(LIBNAME)
test: $(LIBNAME) test.c
$(CC) $(CFLAGS) test.c ../cpudetect.c -o test ../osdep/libosdep.a ./liba52.a -lm
test2: $(LIBNAME) test.c
$(CC) $(CFLAGS) test.c -o test2 ../libac3/libac3.a ./liba52.a -lm
all: $(LIBNAME)
clean:
rm -f *.o *.a *~
distclean: clean
rm -f .depend test
dep depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#
# include dependency files if they exist
#
ifneq ($(wildcard .depend),)
include .depend
endif