Makefile.am 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. # Provide the full test output for failed tests when using the parallel
  2. # test suite (which is enabled by default with automake 1.13+).
  3. export VERBOSE = yes
  4. AUTOMAKE_OPTIONS = subdir-objects
  5. ACLOCAL_AMFLAGS = -I m4
  6. lib_LTLIBRARIES = libopus.la
  7. DIST_SUBDIRS = doc
  8. AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk \
  9. -I$(top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed
  10. include celt_sources.mk
  11. include silk_sources.mk
  12. include opus_sources.mk
  13. if FIXED_POINT
  14. SILK_SOURCES += $(SILK_SOURCES_FIXED)
  15. if HAVE_SSE4_1
  16. SILK_SOURCES += $(SILK_SOURCES_SSE4_1) $(SILK_SOURCES_FIXED_SSE4_1)
  17. endif
  18. else
  19. SILK_SOURCES += $(SILK_SOURCES_FLOAT)
  20. if HAVE_SSE4_1
  21. SILK_SOURCES += $(SILK_SOURCES_SSE4_1)
  22. endif
  23. endif
  24. if DISABLE_FLOAT_API
  25. else
  26. OPUS_SOURCES += $(OPUS_SOURCES_FLOAT)
  27. endif
  28. if HAVE_SSE
  29. CELT_SOURCES += $(CELT_SOURCES_SSE)
  30. endif
  31. if HAVE_SSE2
  32. CELT_SOURCES += $(CELT_SOURCES_SSE2)
  33. endif
  34. if HAVE_SSE4_1
  35. CELT_SOURCES += $(CELT_SOURCES_SSE4_1)
  36. endif
  37. if CPU_ARM
  38. CELT_SOURCES += $(CELT_SOURCES_ARM)
  39. SILK_SOURCES += $(SILK_SOURCES_ARM)
  40. if OPUS_ARM_NEON_INTR
  41. CELT_SOURCES += $(CELT_SOURCES_ARM_NEON_INTR)
  42. endif
  43. if OPUS_ARM_EXTERNAL_ASM
  44. nodist_libopus_la_SOURCES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S)
  45. BUILT_SOURCES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S) \
  46. $(CELT_AM_SOURCES_ARM_ASM:.s.in=.s) \
  47. $(CELT_AM_SOURCES_ARM_ASM:.s.in=-gnu.S)
  48. endif
  49. endif
  50. CLEANFILES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S) \
  51. $(CELT_AM_SOURCES_ARM_ASM:.s.in=-gnu.S)
  52. include celt_headers.mk
  53. include silk_headers.mk
  54. include opus_headers.mk
  55. libopus_la_SOURCES = $(CELT_SOURCES) $(SILK_SOURCES) $(OPUS_SOURCES)
  56. libopus_la_LDFLAGS = -no-undefined -version-info @OPUS_LT_CURRENT@:@OPUS_LT_REVISION@:@OPUS_LT_AGE@
  57. libopus_la_LIBADD = $(LIBM)
  58. pkginclude_HEADERS = include/opus.h include/opus_multistream.h include/opus_types.h include/opus_defines.h
  59. noinst_HEADERS = $(OPUS_HEAD) $(SILK_HEAD) $(CELT_HEAD)
  60. if EXTRA_PROGRAMS
  61. noinst_PROGRAMS = opus_demo repacketizer_demo opus_compare tests/test_opus_api tests/test_opus_encode tests/test_opus_decode tests/test_opus_padding celt/tests/test_unit_cwrs32 celt/tests/test_unit_dft celt/tests/test_unit_entropy celt/tests/test_unit_laplace celt/tests/test_unit_mathops celt/tests/test_unit_mdct celt/tests/test_unit_rotation celt/tests/test_unit_types
  62. TESTS = celt/tests/test_unit_types celt/tests/test_unit_mathops celt/tests/test_unit_entropy celt/tests/test_unit_laplace celt/tests/test_unit_dft celt/tests/test_unit_mdct celt/tests/test_unit_rotation celt/tests/test_unit_cwrs32 tests/test_opus_api tests/test_opus_decode tests/test_opus_encode tests/test_opus_padding
  63. opus_demo_SOURCES = src/opus_demo.c
  64. opus_demo_LDADD = libopus.la $(LIBM)
  65. repacketizer_demo_SOURCES = src/repacketizer_demo.c
  66. repacketizer_demo_LDADD = libopus.la $(LIBM)
  67. opus_compare_SOURCES = src/opus_compare.c
  68. opus_compare_LDADD = $(LIBM)
  69. tests_test_opus_api_SOURCES = tests/test_opus_api.c tests/test_opus_common.h
  70. tests_test_opus_api_LDADD = libopus.la $(LIBM)
  71. tests_test_opus_encode_SOURCES = tests/test_opus_encode.c tests/test_opus_common.h
  72. tests_test_opus_encode_LDADD = libopus.la $(LIBM)
  73. tests_test_opus_decode_SOURCES = tests/test_opus_decode.c tests/test_opus_common.h
  74. tests_test_opus_decode_LDADD = libopus.la $(LIBM)
  75. tests_test_opus_padding_SOURCES = tests/test_opus_padding.c tests/test_opus_common.h
  76. tests_test_opus_padding_LDADD = libopus.la $(LIBM)
  77. celt_tests_test_unit_cwrs32_SOURCES = celt/tests/test_unit_cwrs32.c
  78. celt_tests_test_unit_cwrs32_LDADD = $(LIBM)
  79. celt_tests_test_unit_dft_SOURCES = celt/tests/test_unit_dft.c
  80. celt_tests_test_unit_dft_LDADD = $(LIBM)
  81. celt_tests_test_unit_entropy_SOURCES = celt/tests/test_unit_entropy.c
  82. celt_tests_test_unit_entropy_LDADD = $(LIBM)
  83. celt_tests_test_unit_laplace_SOURCES = celt/tests/test_unit_laplace.c
  84. celt_tests_test_unit_laplace_LDADD = $(LIBM)
  85. celt_tests_test_unit_mathops_SOURCES = celt/tests/test_unit_mathops.c
  86. celt_tests_test_unit_mathops_LDADD = $(LIBM)
  87. if CPU_ARM
  88. if OPUS_ARM_EXTERNAL_ASM
  89. celt_tests_test_unit_mathops_LDADD += libopus.la
  90. endif
  91. endif
  92. celt_tests_test_unit_mdct_SOURCES = celt/tests/test_unit_mdct.c
  93. celt_tests_test_unit_mdct_LDADD = $(LIBM)
  94. celt_tests_test_unit_rotation_SOURCES = celt/tests/test_unit_rotation.c
  95. celt_tests_test_unit_rotation_LDADD = $(LIBM)
  96. if CPU_ARM
  97. if OPUS_ARM_EXTERNAL_ASM
  98. celt_tests_test_unit_rotation_LDADD += libopus.la
  99. endif
  100. endif
  101. celt_tests_test_unit_types_SOURCES = celt/tests/test_unit_types.c
  102. celt_tests_test_unit_types_LDADD = $(LIBM)
  103. endif
  104. if CUSTOM_MODES
  105. pkginclude_HEADERS += include/opus_custom.h
  106. if EXTRA_PROGRAMS
  107. noinst_PROGRAMS += opus_custom_demo
  108. opus_custom_demo_SOURCES = celt/opus_custom_demo.c
  109. opus_custom_demo_LDADD = libopus.la $(LIBM)
  110. endif
  111. endif
  112. EXTRA_DIST = version.mk \
  113. opus.pc.in \
  114. opus-uninstalled.pc.in \
  115. opus.m4 \
  116. Makefile.mips \
  117. Makefile.unix \
  118. tests/run_vectors.sh \
  119. celt/arm/arm2gnu.pl \
  120. celt/arm/celt_pitch_xcorr_arm.s \
  121. win32/VS2010/silk_float.vcxproj \
  122. win32/VS2010/celt.vcxproj.filters \
  123. win32/VS2010/opus.vcxproj \
  124. win32/VS2010/silk_common.vcxproj.filters \
  125. win32/VS2010/silk_float.vcxproj.filters \
  126. win32/VS2010/test_opus_encode.vcxproj.filters \
  127. win32/VS2010/silk_common.vcxproj \
  128. win32/VS2010/test_opus_encode.vcxproj \
  129. win32/VS2010/opus_demo.vcxproj \
  130. win32/VS2010/test_opus_api.vcxproj.filters \
  131. win32/VS2010/test_opus_api.vcxproj \
  132. win32/VS2010/test_opus_decode.vcxproj.filters \
  133. win32/VS2010/silk_fixed.vcxproj.filters \
  134. win32/VS2010/opus_demo.vcxproj.filters \
  135. win32/VS2010/silk_fixed.vcxproj \
  136. win32/VS2010/opus.vcxproj.filters \
  137. win32/VS2010/test_opus_decode.vcxproj \
  138. win32/VS2010/celt.vcxproj \
  139. win32/VS2010/opus.sln \
  140. win32/genversion.bat \
  141. win32/config.h
  142. pkgconfigdir = $(libdir)/pkgconfig
  143. pkgconfig_DATA = opus.pc
  144. m4datadir = $(datadir)/aclocal
  145. m4data_DATA = opus.m4
  146. # Targets to build and install just the library without the docs
  147. opus check-opus install-opus: export NO_DOXYGEN = 1
  148. opus: all
  149. check-opus: check
  150. install-opus: install
  151. # Or just the docs
  152. docs:
  153. ( cd doc && $(MAKE) $(AM_MAKEFLAGS) )
  154. install-docs:
  155. ( cd doc && $(MAKE) $(AM_MAKEFLAGS) install )
  156. # Or everything (by default)
  157. all-local:
  158. @[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) )
  159. install-data-local:
  160. @[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) install )
  161. clean-local:
  162. -( cd doc && $(MAKE) $(AM_MAKEFLAGS) clean )
  163. uninstall-local:
  164. ( cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall )
  165. # We check this every time make is run, with configure.ac being touched to
  166. # trigger an update of the build system files if update_version changes the
  167. # current PACKAGE_VERSION (or if package_version was modified manually by a
  168. # user with either AUTO_UPDATE=no or no update_version script present - the
  169. # latter being the normal case for tarball releases).
  170. #
  171. # We can't just add the package_version file to CONFIGURE_DEPENDENCIES since
  172. # simply running autoconf will not actually regenerate configure for us when
  173. # the content of that file changes (due to autoconf dependency checking not
  174. # knowing about that without us creating yet another file for it to include).
  175. #
  176. # The MAKECMDGOALS check is a gnu-make'ism, but will degrade 'gracefully' for
  177. # makes that don't support it. The only loss of functionality is not forcing
  178. # an update of package_version for `make dist` if AUTO_UPDATE=no, but that is
  179. # unlikely to be a real problem for any real user.
  180. $(top_srcdir)/configure.ac: force
  181. @case "$(MAKECMDGOALS)" in \
  182. dist-hook) exit 0 ;; \
  183. dist-* | dist | distcheck | distclean) _arg=release ;; \
  184. esac; \
  185. if ! $(top_srcdir)/update_version $$_arg 2> /dev/null; then \
  186. if [ ! -e $(top_srcdir)/package_version ]; then \
  187. echo 'PACKAGE_VERSION="unknown"' > $(top_srcdir)/package_version; \
  188. fi; \
  189. . $(top_srcdir)/package_version || exit 1; \
  190. [ "$(PACKAGE_VERSION)" != "$$PACKAGE_VERSION" ] || exit 0; \
  191. fi; \
  192. touch $@
  193. force:
  194. # Create a minimal package_version file when make dist is run.
  195. dist-hook:
  196. echo 'PACKAGE_VERSION="$(PACKAGE_VERSION)"' > $(top_distdir)/package_version
  197. .PHONY: opus check-opus install-opus docs install-docs
  198. # automake doesn't do dependency tracking for asm files, that I can tell
  199. $(CELT_SOURCES_ARM_ASM:%.s=%-gnu.S): celt/arm/armopts-gnu.S
  200. $(CELT_SOURCES_ARM_ASM:%.s=%-gnu.S): $(top_srcdir)/celt/arm/arm2gnu.pl
  201. # convert ARM asm to GNU as format
  202. %-gnu.S: $(top_srcdir)/%.s
  203. $(top_srcdir)/celt/arm/arm2gnu.pl @ARM2GNU_PARAMS@ < $< > $@
  204. # For autoconf-modified sources (e.g., armopts.s)
  205. %-gnu.S: %.s
  206. $(top_srcdir)/celt/arm/arm2gnu.pl @ARM2GNU_PARAMS@ < $< > $@
  207. OPT_UNIT_TEST_OBJ = $(celt_tests_test_unit_mathops_SOURCES:.c=.o) \
  208. $(celt_tests_test_unit_rotation_SOURCES:.c=.o) \
  209. $(celt_tests_test_unit_mdct_SOURCES:.c=.o) \
  210. $(celt_tests_test_unit_dft_SOURCES:.c=.o)
  211. if HAVE_SSE
  212. SSE_OBJ = $(CELT_SOURCES_SSE:.c=.lo)
  213. $(SSE_OBJ) $(OPT_UNIT_TEST_OBJ): CFLAGS += $(OPUS_X86_SSE_CFLAGS)
  214. endif
  215. if HAVE_SSE2
  216. SSE2_OBJ = $(CELT_SOURCES_SSE2:.c=.lo)
  217. $(SSE2_OBJ) $(OPT_UNIT_TEST_OBJ): CFLAGS += $(OPUS_X86_SSE2_CFLAGS)
  218. endif
  219. if HAVE_SSE4_1
  220. SSE4_1_OBJ = $(CELT_SOURCES_SSE4_1:.c=.lo) \
  221. $(SILK_SOURCES_SSE4_1:.c=.lo) \
  222. $(SILK_SOURCES_FIXED_SSE4_1:.c=.lo)
  223. $(SSE4_1_OBJ) $(OPT_UNIT_TEST_OBJ): CFLAGS += $(OPUS_X86_SSE4_1_CFLAGS)
  224. endif
  225. if OPUS_ARM_NEON_INTR
  226. CELT_ARM_NEON_INTR_OBJ = $(CELT_SOURCES_ARM_NEON_INTR:.c=.lo)
  227. $(CELT_ARM_NEON_INTR_OBJ) $(OPT_UNIT_TEST_OBJ): CFLAGS += $(OPUS_ARM_NEON_INTR_CFLAGS)
  228. endif