Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.4 KiB

  1. ## Process this file with automake to produce Makefile.in. -*-Makefile-*-
  2. # $Id: Makefile.am,v 1.49 2003/03/17 22:40:57 jm Exp $
  3. # Disable automatic dependency tracking if using other tools than gcc and gmake
  4. #AUTOMAKE_OPTIONS = no-dependencies
  5. lib_LTLIBRARIES = libspeex.la
  6. # Sources for compilation in the library
  7. libspeex_la_SOURCES = nb_celp.c \
  8. sb_celp.c \
  9. lpc.c \
  10. ltp.c \
  11. lsp.c \
  12. quant_lsp.c \
  13. lsp_tables_nb.c \
  14. gain_table.c \
  15. gain_table_lbr.c \
  16. cb_search.c \
  17. filters.c \
  18. bits.c \
  19. modes.c \
  20. vq.c \
  21. high_lsp_tables.c \
  22. vbr.c \
  23. hexc_table.c \
  24. exc_5_256_table.c \
  25. exc_5_64_table.c \
  26. exc_8_128_table.c \
  27. exc_10_32_table.c \
  28. exc_10_16_table.c \
  29. exc_20_32_table.c \
  30. hexc_10_32_table.c \
  31. misc.c \
  32. speex_header.c \
  33. speex_callbacks.c \
  34. math_approx.c \
  35. stereo.c
  36. include_HEADERS = speex.h \
  37. speex_bits.h \
  38. speex_header.h \
  39. speex_callbacks.h \
  40. speex_stereo.h
  41. noinst_HEADERS = lsp.h \
  42. nb_celp.h \
  43. lpc.h \
  44. ltp.h \
  45. quant_lsp.h \
  46. cb_search.h \
  47. filters.h \
  48. stack_alloc.h \
  49. vq.h \
  50. modes.h \
  51. sb_celp.h \
  52. vbr.h \
  53. misc.h \
  54. ltp_sse.h \
  55. filters_sse.h \
  56. math_approx.h
  57. libspeex_la_LDFLAGS = -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@
  58. noinst_PROGRAMS = testenc testenc_wb testenc_uwb
  59. testenc_SOURCES = testenc.c
  60. testenc_LDADD = libspeex.la
  61. testenc_wb_SOURCES = testenc_wb.c
  62. testenc_wb_LDADD = libspeex.la
  63. testenc_uwb_SOURCES = testenc_uwb.c
  64. testenc_uwb_LDADD = libspeex.la