1# Disable automatic dependency tracking if using other tools than gcc and gmake
2#AUTOMAKE_OPTIONS = no-dependencies
3
4
5EXTRA_DIST=testenc.c testenc_wb.c testenc_uwb.c testdenoise.c testecho.c
6
7INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir) @OGG_CFLAGS@
8
9lib_LTLIBRARIES = libspeex.la
10
11# Sources for compilation in the library
12libspeex_la_SOURCES = nb_celp.c \
13	sb_celp.c \
14	lpc.c \
15	ltp.c \
16	lsp.c \
17	quant_lsp.c \
18	lsp_tables_nb.c \
19	gain_table.c \
20	gain_table_lbr.c \
21	cb_search.c \
22	filters.c \
23	bits.c \
24	modes.c \
25	speex.c \
26	vq.c \
27	high_lsp_tables.c \
28	vbr.c \
29	hexc_table.c \
30	exc_5_256_table.c \
31	exc_5_64_table.c \
32	exc_8_128_table.c \
33	exc_10_32_table.c \
34	exc_10_16_table.c \
35	exc_20_32_table.c \
36	hexc_10_32_table.c \
37	misc.c \
38	speex_header.c \
39	speex_callbacks.c \
40	math_approx.c \
41	stereo.c \
42	preprocess.c \
43	smallft.c \
44	lbr_48k_tables.c \
45	jitter.c \
46	mdf.c
47
48noinst_HEADERS = lsp.h \
49	nb_celp.h \
50	lpc.h \
51	lpc_bfin.h \
52	ltp.h \
53	quant_lsp.h \
54	cb_search.h \
55	filters.h \
56	stack_alloc.h \
57	vq.h \
58	vq_sse.h \
59	vq_arm4.h \
60	vq_bfin.h \
61	modes.h \
62	sb_celp.h \
63	vbr.h \
64	misc.h \
65	misc_bfin.h \
66	ltp_sse.h \
67	ltp_arm4.h \
68	ltp_bfin.h \
69	filters_sse.h \
70	filters_arm4.h \
71	filters_bfin.h \
72	math_approx.h \
73	smallft.h \
74	arch.h \
75	fixed_arm4.h \
76	fixed_arm5e.h \
77	fixed_bfin.h \
78	fixed_debug.h \
79	fixed_generic.h \
80	cb_search_sse.h \
81	cb_search_arm4.h \
82	cb_search_bfin.h
83
84
85libspeex_la_LDFLAGS = -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@
86
87