Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-01-28 14:28:54 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-01-28 14:28:54 +0300
commit6238bc0ece31ca1a1b9378de71de32d405919d81 (patch)
tree343c65c150f366cd2e2850da655bef3ab5405d48 /libcelt/Makefile.am
parent94d4ea930543f83483e158111b53389704b583b7 (diff)
Moved the content of libentcode into libcelt to reduce dependencies,
especially now that we have a custom version of that code anyway. Moved the test code to tests/
Diffstat (limited to 'libcelt/Makefile.am')
-rw-r--r--libcelt/Makefile.am20
1 files changed, 11 insertions, 9 deletions
diff --git a/libcelt/Makefile.am b/libcelt/Makefile.am
index 65f1c4f..ea383cf 100644
--- a/libcelt/Makefile.am
+++ b/libcelt/Makefile.am
@@ -10,20 +10,22 @@ pkginclude_HEADERS = celt.h
lib_LTLIBRARIES = libcelt.la
# Sources for compilation in the library
-libcelt_la_SOURCES = bands.c celt.c cwrs.c fftwrap.c mdct.c modes.c pitch.c \
- psy.c quant_bands.c quant_pitch.c rate.c smallft.c vq.c
+libcelt_la_SOURCES = bands.c bitrdec.c bitree.c bitrenc.c celt.c cwrs.c \
+ ecintrin.h entcode.c entdec.c entenc.c fftwrap.c laplace.c mdct.c \
+ modes.c pitch.c psy.c quant_bands.c quant_pitch.c rangedec.c \
+ rangeenc.c rate.c smallft.c vq.c
#noinst_HEADERS =
libcelt_la_LDFLAGS = -version-info @CELT_LT_CURRENT@:@CELT_LT_REVISION@:@CELT_LT_AGE@
-noinst_HEADERS = arch.h bands.h cwrs.h fftwrap.h mdct.h modes.h \
- os_support.h pgain_table.h pitch.h psy.h quant_bands.h quant_pitch.h rate.h \
- smallft.h vq.h
+noinst_HEADERS = arch.h bands.h bitrdec.h bitree.h bitrenc.h cwrs.h \
+ ecintrin.h entcode.h entdec.h entenc.h fftwrap.h laplace.h \
+ mfrngcod.h mdct.h modes.h os_support.h pgain_table.h pitch.h psy.h \
+ quant_bands.h quant_pitch.h rate.h smallft.h vq.h
noinst_PROGRAMS = testcelt
testcelt_SOURCES = testcelt.c
-testcelt_LDADD = $(top_builddir)/libentcode/libentcode.la \
- libcelt.la
-INCLUDES = -I$(top_srcdir)/libentcode
-libcelt_la_LIBADD = $(top_builddir)/libentcode/libentcode.la
+testcelt_LDADD = libcelt.la
+INCLUDES =
+libcelt_la_LIBADD =