Makefile.am 9.9 KB

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