2001-12-09 18:04:17 +00:00
|
|
|
|
|
|
|
LIBNAME = liba52.a
|
|
|
|
|
|
|
|
include ../config.mak
|
|
|
|
|
2001-12-30 04:42:42 +00:00
|
|
|
SRCS = crc.c resample.c bit_allocate.c bitstream.c downmix.c imdct.c imdct_mlib.c parse.c
|
2001-12-09 18:04:17 +00:00
|
|
|
OBJS = $(SRCS:.c=.o)
|
|
|
|
|
2001-12-14 20:14:59 +00:00
|
|
|
CFLAGS = $(MLIB_INC) $(OPTFLAGS)
|
2001-12-09 18:04:17 +00:00
|
|
|
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
|
|
|
|
# .PHONY: all clean
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
$(LIBNAME): $(OBJS)
|
|
|
|
$(AR) r $(LIBNAME) $(OBJS)
|
|
|
|
|
|
|
|
test: $(LIBNAME) test.c
|
2002-08-29 21:30:57 +00:00
|
|
|
$(CC) $(CFLAGS) test.c ../cpudetect.c -o test ./liba52.a -lm
|
2001-12-09 18:04:17 +00:00
|
|
|
|
|
|
|
test2: $(LIBNAME) test.c
|
2002-08-29 21:30:57 +00:00
|
|
|
$(CC) $(CFLAGS) test.c -o test2 ../libac3/libac3.a ./liba52.a -lm
|
2001-12-09 18:04:17 +00:00
|
|
|
|
|
|
|
all: $(LIBNAME)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o *.a *~
|
|
|
|
|
|
|
|
distclean:
|
|
|
|
rm -f test *.o *.a *~ .depend
|
|
|
|
|
|
|
|
dep: depend
|
|
|
|
|
|
|
|
depend:
|
|
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|