diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-02-24 14:07:21 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-02-24 14:07:21 +0100 |
commit | 715ed57ab1650cac0c6279d9cd60b2c63d32539c (patch) | |
tree | e237442562e909c163366f2a2962d5a084fd44d4 /ac3dec/Makefile | |
parent | 44ee59b21ab0d84aa1f2f9cb8d55439b5dd483a8 (diff) | |
download | vdr-715ed57ab1650cac0c6279d9cd60b2c63d32539c.tar.gz vdr-715ed57ab1650cac0c6279d9cd60b2c63d32539c.tar.bz2 |
Removed DVD support from the core VDR source
Diffstat (limited to 'ac3dec/Makefile')
-rw-r--r-- | ac3dec/Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/ac3dec/Makefile b/ac3dec/Makefile deleted file mode 100644 index 8a4791f2..00000000 --- a/ac3dec/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# -# Makefile for 'ac3dec' -# -# $Id: Makefile 1.2 2001/08/09 11:41:39 kls Exp $ - -#OBJS = coeff.o decode.o exponent.o rematrix.o bit_allocate.o crc.o dither.o\ -# imdct.o sanity_check.o bitstream.o debug.o downmix.o parse.o stats.o\ -# downmix_c.o imdct.o - -OBJS = bit_allocate.o bitstream.o coeff.o cpu_accel.o crc.o debug.o decode.o\ - dither.o downmix.o downmix_c.o exponent.o imdct.o imdct_c.o imdct_kni.o\ - parse.o rematrix.o sanity_check.o srfft.o srfft_kni_c.o stats.o - - -DEFINES += -DDOLBY_SURROUND - -all: libac3.a - -libac3.a: $(OBJS) - ar -rc libac3.a $(OBJS) - -# Implicit rules: - -%.o: %.c - gcc -g -O2 -Wall -m486 -I./ -c $(DEFINES) $< - -clean: - rm -f *~ libac3.a $(OBJS) |