Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: opus/Makefile.am

Issue 11196031: Add copy of opus library in deps/third_party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « opus/INSTALL ('k') | opus/Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 AUTOMAKE_OPTIONS = subdir-objects
2
3 lib_LTLIBRARIES = libopus.la
4
5 DIST_SUBDIRS = doc
6
7 INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk -I$ (top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed
8
9 include celt_sources.mk
10 include silk_sources.mk
11 include opus_sources.mk
12
13 if FIXED_POINT
14 SILK_SOURCES += $(SILK_SOURCES_FIXED)
15 else
16 SILK_SOURCES += $(SILK_SOURCES_FLOAT)
17 endif
18
19 include celt_headers.mk
20 include silk_headers.mk
21 include opus_headers.mk
22
23 libopus_la_SOURCES = $(CELT_SOURCES) $(SILK_SOURCES) $(OPUS_SOURCES)
24 libopus_la_LDFLAGS = -no-undefined -version-info @OPUS_LT_CURRENT@:@OPUS_LT_REVI SION@:@OPUS_LT_AGE@
25
26 pkginclude_HEADERS = include/opus.h include/opus_multistream.h include/opus_type s.h include/opus_defines.h
27
28 noinst_HEADERS = $(OPUS_HEAD) $(SILK_HEAD) $(CELT_HEAD)
29
30 noinst_PROGRAMS = opus_demo repacketizer_demo opus_compare tests/test_opus_api t ests/test_opus_encode tests/test_opus_decode celt/tests/test_unit_cwrs32 celt/te sts/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
31
32 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/te st_unit_mdct celt/tests/test_unit_rotation celt/tests/test_unit_cwrs32 tests/tes t_opus_api tests/test_opus_decode tests/test_opus_encode
33
34 opus_demo_SOURCES = src/opus_demo.c
35
36 opus_demo_LDADD = libopus.la -lm
37
38 repacketizer_demo_SOURCES = src/repacketizer_demo.c
39
40 repacketizer_demo_LDADD = libopus.la -lm
41
42 opus_compare_SOURCES = src/opus_compare.c
43 opus_compare_LDADD = -lm
44
45 tests_test_opus_api_SOURCES = tests/test_opus_api.c tests/test_opus_common.h
46 tests_test_opus_api_LDADD = libopus.la -lm
47
48 tests_test_opus_encode_SOURCES = tests/test_opus_encode.c tests/test_opus_common .h
49 tests_test_opus_encode_LDADD = libopus.la -lm
50
51 tests_test_opus_decode_SOURCES = tests/test_opus_decode.c tests/test_opus_common .h
52 tests_test_opus_decode_LDADD = libopus.la -lm
53
54 celt_tests_test_unit_cwrs32_SOURCES = celt/tests/test_unit_cwrs32.c
55 celt_tests_test_unit_cwrs32_LDADD = -lm
56
57 celt_tests_test_unit_dft_SOURCES = celt/tests/test_unit_dft.c
58 celt_tests_test_unit_dft_LDADD = -lm
59
60 celt_tests_test_unit_entropy_SOURCES = celt/tests/test_unit_entropy.c
61 celt_tests_test_unit_entropy_LDADD = -lm
62
63 celt_tests_test_unit_laplace_SOURCES = celt/tests/test_unit_laplace.c
64 celt_tests_test_unit_laplace_LDADD = -lm
65
66 celt_tests_test_unit_mathops_SOURCES = celt/tests/test_unit_mathops.c
67 celt_tests_test_unit_mathops_LDADD = -lm
68
69 celt_tests_test_unit_mdct_SOURCES = celt/tests/test_unit_mdct.c
70 celt_tests_test_unit_mdct_LDADD = -lm
71
72 celt_tests_test_unit_rotation_SOURCES = celt/tests/test_unit_rotation.c
73 celt_tests_test_unit_rotation_LDADD = -lm
74
75 celt_tests_test_unit_types_SOURCES = celt/tests/test_unit_types.c
76 celt_tests_test_unit_types_LDADD = -lm
77
78 if CUSTOM_MODES
79 pkginclude_HEADERS += include/opus_custom.h
80 noinst_PROGRAMS += opus_custom_demo
81 opus_custom_demo_SOURCES = celt/opus_custom_demo.c
82 opus_custom_demo_LDADD = libopus.la -lm
83 endif
84
85 EXTRA_DIST = version.mk \
86 opus.pc.in \
87 opus-uninstalled.pc.in \
88 opus.m4 \
89 Makefile.unix \
90 tests/run_vectors.sh \
91 opus.sln \
92 celt/celt.vcxproj \
93 celt/celt.vcxproj.filters \
94 src/opus_demo.vcxproj \
95 src/opus.vcxproj \
96 src/opus.vcxproj.filters \
97 src/opus_demo.vcxproj.filters \
98 tests/test_opus_decode.vcxproj.filters \
99 tests/test_opus_decode.vcxproj \
100 tests/test_opus_encode.vcxproj.filters \
101 tests/test_opus_encode.vcxproj \
102 tests/test_opus_api.vcxproj.filters \
103 tests/test_opus_api.vcxproj \
104 silk/float/silk_float.vcxproj.filters \
105 silk/float/silk_float.vcxproj \
106 silk/fixed/silk_fixed.vcxproj.filters \
107 silk/fixed/silk_fixed.vcxproj \
108 silk/silk_common.vcxproj \
109 silk/silk_common.vcxproj.filters \
110 win32/genversion.bat \
111 win32/config.h
112
113 pkgconfigdir = $(libdir)/pkgconfig
114 pkgconfig_DATA = opus.pc
115
116 m4datadir = $(datadir)/aclocal
117 m4data_DATA = opus.m4
118
119 # Targets to build and install just the library without the docs
120 opus check-opus install-opus: export NO_DOXYGEN = 1
121
122 opus: all
123 check-opus: check
124 install-opus: install
125
126
127 # Or just the docs
128 docs:
129 cd doc && $(MAKE) $(AM_MAKEFLAGS)
130
131 install-docs:
132 cd doc && $(MAKE) $(AM_MAKEFLAGS) install
133
134
135 # Or everything (by default)
136 all-local:
137 @[ -n "$(NO_DOXYGEN)" ] || cd doc && $(MAKE) $(AM_MAKEFLAGS)
138
139 install-data-local:
140 @[ -n "$(NO_DOXYGEN)" ] || cd doc && $(MAKE) $(AM_MAKEFLAGS) install
141
142 clean-local:
143 -cd doc && $(MAKE) $(AM_MAKEFLAGS) clean
144
145 uninstall-local:
146 cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall
147
148
149 .PHONY: opus check-opus install-opus docs install-docs
OLDNEW
« no previous file with comments | « opus/INSTALL ('k') | opus/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698