Makefile.am 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Disable automatic dependency tracking if using other tools than gcc and gmake
  2. #AUTOMAKE_OPTIONS = no-dependencies
  3. EXTRA_DIST=echo_diagnostic.m
  4. INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir) @OGG_CFLAGS@ @FFT_CFLAGS@
  5. lib_LTLIBRARIES = libspeex.la libspeexdsp.la
  6. # Sources for compilation in the library
  7. libspeex_la_SOURCES = cb_search.c exc_10_32_table.c exc_8_128_table.c \
  8. filters.c gain_table.c hexc_table.c high_lsp_tables.c lsp.c \
  9. ltp.c speex.c stereo.c vbr.c vq.c bits.c exc_10_16_table.c \
  10. exc_20_32_table.c exc_5_256_table.c exc_5_64_table.c gain_table_lbr.c hexc_10_32_table.c \
  11. lpc.c lsp_tables_nb.c modes.c modes_wb.c nb_celp.c quant_lsp.c sb_celp.c \
  12. speex_callbacks.c speex_header.c window.c
  13. if BUILD_KISS_FFT
  14. FFTSRC=kiss_fft.c _kiss_fft_guts.h kiss_fft.h kiss_fftr.c kiss_fftr.h
  15. else
  16. if BUILD_SMALLFT
  17. FFTSRC=smallft.c
  18. else
  19. FFTSRC=
  20. endif
  21. endif
  22. libspeexdsp_la_SOURCES = preprocess.c jitter.c mdf.c fftwrap.c filterbank.c resample.c buffer.c scal.c $(FFTSRC)
  23. noinst_HEADERS = arch.h cb_search_arm4.h cb_search_bfin.h cb_search_sse.h \
  24. filters.h filters_arm4.h filters_bfin.h filters_sse.h fixed_arm4.h \
  25. fixed_arm5e.h fixed_bfin.h fixed_debug.h lpc.h lpc_bfin.h ltp.h ltp_arm4.h \
  26. ltp_sse.h math_approx.h misc_bfin.h nb_celp.h quant_lsp.h sb_celp.h \
  27. stack_alloc.h vbr.h vq.h vq_arm4.h vq_bfin.h vq_sse.h cb_search.h fftwrap.h \
  28. filterbank.h fixed_generic.h lsp.h lsp_bfin.h ltp_bfin.h modes.h os_support.h \
  29. pseudofloat.h quant_lsp_bfin.h smallft.h vorbis_psy.h resample_sse.h
  30. libspeex_la_LDFLAGS = -no-undefined -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@
  31. libspeexdsp_la_LDFLAGS = -no-undefined -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@
  32. noinst_PROGRAMS = testenc testenc_wb testenc_uwb testdenoise testecho testjitter
  33. testenc_SOURCES = testenc.c
  34. testenc_LDADD = libspeex.la
  35. testenc_wb_SOURCES = testenc_wb.c
  36. testenc_wb_LDADD = libspeex.la
  37. testenc_uwb_SOURCES = testenc_uwb.c
  38. testenc_uwb_LDADD = libspeex.la
  39. testdenoise_SOURCES = testdenoise.c
  40. testdenoise_LDADD = libspeexdsp.la @FFT_LIBS@
  41. testecho_SOURCES = testecho.c
  42. testecho_LDADD = libspeexdsp.la @FFT_LIBS@
  43. testjitter_SOURCES = testjitter.c
  44. testjitter_LDADD = libspeexdsp.la @FFT_LIBS@