summaryrefslogtreecommitdiff
path: root/engine/voice_codecs/speex/source/libspeex/Makefile.am
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /engine/voice_codecs/speex/source/libspeex/Makefile.am
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'engine/voice_codecs/speex/source/libspeex/Makefile.am')
-rw-r--r--engine/voice_codecs/speex/source/libspeex/Makefile.am77
1 files changed, 77 insertions, 0 deletions
diff --git a/engine/voice_codecs/speex/source/libspeex/Makefile.am b/engine/voice_codecs/speex/source/libspeex/Makefile.am
new file mode 100644
index 0000000..940bc37
--- /dev/null
+++ b/engine/voice_codecs/speex/source/libspeex/Makefile.am
@@ -0,0 +1,77 @@
+## Process this file with automake to produce Makefile.in. -*-Makefile-*-
+
+# $Id: Makefile.am,v 1.49 2003/03/17 22:40:57 jm Exp $
+
+# Disable automatic dependency tracking if using other tools than gcc and gmake
+#AUTOMAKE_OPTIONS = no-dependencies
+
+lib_LTLIBRARIES = libspeex.la
+
+# Sources for compilation in the library
+libspeex_la_SOURCES = nb_celp.c \
+ sb_celp.c \
+ lpc.c \
+ ltp.c \
+ lsp.c \
+ quant_lsp.c \
+ lsp_tables_nb.c \
+ gain_table.c \
+ gain_table_lbr.c \
+ cb_search.c \
+ filters.c \
+ bits.c \
+ modes.c \
+ vq.c \
+ high_lsp_tables.c \
+ vbr.c \
+ hexc_table.c \
+ exc_5_256_table.c \
+ exc_5_64_table.c \
+ exc_8_128_table.c \
+ exc_10_32_table.c \
+ exc_10_16_table.c \
+ exc_20_32_table.c \
+ hexc_10_32_table.c \
+ misc.c \
+ speex_header.c \
+ speex_callbacks.c \
+ math_approx.c \
+ stereo.c
+
+
+include_HEADERS = speex.h \
+ speex_bits.h \
+ speex_header.h \
+ speex_callbacks.h \
+ speex_stereo.h
+
+noinst_HEADERS = lsp.h \
+ nb_celp.h \
+ lpc.h \
+ ltp.h \
+ quant_lsp.h \
+ cb_search.h \
+ filters.h \
+ stack_alloc.h \
+ vq.h \
+ modes.h \
+ sb_celp.h \
+ vbr.h \
+ misc.h \
+ ltp_sse.h \
+ filters_sse.h \
+ math_approx.h
+
+
+libspeex_la_LDFLAGS = -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@
+
+noinst_PROGRAMS = testenc testenc_wb testenc_uwb
+
+testenc_SOURCES = testenc.c
+testenc_LDADD = libspeex.la
+
+testenc_wb_SOURCES = testenc_wb.c
+testenc_wb_LDADD = libspeex.la
+
+testenc_uwb_SOURCES = testenc_uwb.c
+testenc_uwb_LDADD = libspeex.la