~ubuntu-branches/ubuntu/gutsy/speex/gutsy-security

« back to all changes in this revision

Viewing changes to libspeex/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2005-12-07 23:22:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051207232221-nme7vf9m182p7dpe
Tags: 1.1.11.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
EXTRA_DIST=testenc.c testenc_wb.c testenc_uwb.c testdenoise.c testecho.c
6
6
 
7
 
INCLUDES = -I$(top_srcdir)/include
 
7
INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir) @OGG_CFLAGS@
8
8
 
9
9
lib_LTLIBRARIES = libspeex.la
10
10
 
11
 
if DISABLE_GLOBAL_POINTERS
12
 
modes = modes_noglobals.c
13
 
else
14
 
modes = modes.c
15
 
endif
16
 
 
17
11
# Sources for compilation in the library
18
 
libspeex_la_SOURCES = nb_celp.c \
19
 
        sb_celp.c \
20
 
        lpc.c \
21
 
        ltp.c \
22
 
        lsp.c \
23
 
        quant_lsp.c \
24
 
        lsp_tables_nb.c \
25
 
        gain_table.c \
26
 
        gain_table_lbr.c \
27
 
        cb_search.c \
28
 
        filters.c \
29
 
        bits.c \
30
 
        $(modes) \
31
 
        speex.c \
32
 
        vq.c \
33
 
        high_lsp_tables.c \
34
 
        vbr.c \
35
 
        hexc_table.c \
36
 
        exc_5_256_table.c \
37
 
        exc_5_64_table.c \
38
 
        exc_8_128_table.c \
39
 
        exc_10_32_table.c \
40
 
        exc_10_16_table.c \
41
 
        exc_20_32_table.c \
42
 
        hexc_10_32_table.c \
43
 
        misc.c \
44
 
        speex_header.c \
45
 
        speex_callbacks.c \
46
 
        math_approx.c \
47
 
        stereo.c \
48
 
        preprocess.c \
49
 
        smallft.c \
50
 
        lbr_48k_tables.c \
51
 
        jitter.c \
52
 
        mdf.c
 
12
libspeex_la_SOURCES = nb_celp.c         sb_celp.c       lpc.c   ltp.c   lsp.c   quant_lsp.c \
 
13
                lsp_tables_nb.c         gain_table.c    gain_table_lbr.c        cb_search.c     filters.c       bits.c \
 
14
                modes.c         speex.c         vq.c    high_lsp_tables.c       vbr.c   hexc_table.c \
 
15
                exc_5_256_table.c       exc_5_64_table.c        exc_8_128_table.c       exc_10_32_table.c \
 
16
                exc_10_16_table.c       exc_20_32_table.c       hexc_10_32_table.c      misc.c  speex_header.c \
 
17
                speex_callbacks.c       math_approx.c   stereo.c        preprocess.c    smallft.c       lbr_48k_tables.c \
 
18
                jitter.c        mdf.c vorbis_psy.c
53
19
 
54
 
noinst_HEADERS = lsp.h \
55
 
        nb_celp.h \
56
 
        lpc.h \
57
 
        ltp.h \
58
 
        quant_lsp.h \
59
 
        cb_search.h \
60
 
        filters.h \
61
 
        stack_alloc.h \
62
 
        vq.h \
63
 
        modes.h \
64
 
        sb_celp.h \
65
 
        vbr.h \
66
 
        misc.h \
67
 
        ltp_sse.h \
68
 
        filters_sse.h \
69
 
        math_approx.h \
70
 
        smallft.h \
71
 
        arch.h \
72
 
        fixed_arm.h \
73
 
        fixed_debug.h \
74
 
        fixed_generic.h \
75
 
        cb_search_sse.h
 
20
noinst_HEADERS = lsp.h  nb_celp.h       lpc.h   lpc_bfin.h      ltp.h   quant_lsp.h \
 
21
                cb_search.h     filters.h       stack_alloc.h   vq.h    vq_sse.h        vq_arm4.h       vq_bfin.h \
 
22
                modes.h         sb_celp.h       vbr.h   misc.h  misc_bfin.h     ltp_sse.h       ltp_arm4.h \
 
23
                ltp_bfin.h      filters_sse.h   filters_arm4.h  filters_bfin.h  math_approx.h \
 
24
                smallft.h       arch.h  fixed_arm4.h    fixed_arm5e.h   fixed_bfin.h    fixed_debug.h \
 
25
                fixed_generic.h         cb_search_sse.h         cb_search_arm4.h        cb_search_bfin.h vorbis_psy.h
76
26
 
77
27
 
78
28
libspeex_la_LDFLAGS = -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@
79
29
 
 
30
noinst_PROGRAMS = testenc testenc_wb testenc_uwb testdenoise testecho
 
31
testenc_SOURCES = testenc.c
 
32
testenc_LDADD = $(top_builddir)/libspeex/libspeex.la
 
33
testenc_wb_SOURCES = testenc_wb.c
 
34
testenc_wb_LDADD = $(top_builddir)/libspeex/libspeex.la
 
35
testenc_uwb_SOURCES = testenc_uwb.c
 
36
testenc_uwb_LDADD = $(top_builddir)/libspeex/libspeex.la
 
37
testdenoise_SOURCES = testdenoise.c
 
38
testdenoise_LDADD = $(top_builddir)/libspeex/libspeex.la
 
39
testecho_SOURCES = testecho.c
 
40
testecho_LDADD = $(top_builddir)/libspeex/libspeex.la