view liba52/Makefile @ 15438:5f6e6d6cccbc

1.924: windows priority support patch 1.925: Added support of audio stream switching in the MPEG demuxer using the #-key 1.926: Online audio switching is for MPEG files only at the moment. 1.927: Better defaults encoding settings for XviD 1.928: changed :vaspect option to float type 1.929: HRTF update 1.930: Use | for alternatives and - for ranges in option parameter descriptions. 1.931: Make the -priority warning obey the standard formatting. 1.932: hrtf typo fix
author kraymer
date Fri, 13 May 2005 16:50:36 +0000
parents 4e7d8679d6d8
children 16b1de65666b
line wrap: on
line source


LIBNAME = liba52.a

include ../config.mak

SRCS    = crc.c resample.c bit_allocate.c bitstream.c downmix.c imdct.c imdct_mlib.c parse.c
OBJS	= $(SRCS:.c=.o)

CFLAGS  = $(MLIB_INC) $(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:
	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