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

Side by Side Diff: Makefile.am

Issue 12388030: Update Opus to 1.0.2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/opus
Patch Set: Created 7 years, 9 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 | « COPYING ('k') | 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
1 AUTOMAKE_OPTIONS = subdir-objects 1 AUTOMAKE_OPTIONS = subdir-objects
2 2
3 lib_LTLIBRARIES = libopus.la 3 lib_LTLIBRARIES = libopus.la
4 4
5 DIST_SUBDIRS = doc 5 DIST_SUBDIRS = doc
6 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 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 8
9 include celt_sources.mk 9 include celt_sources.mk
10 include silk_sources.mk 10 include silk_sources.mk
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 # Targets to build and install just the library without the docs 119 # Targets to build and install just the library without the docs
120 opus check-opus install-opus: export NO_DOXYGEN = 1 120 opus check-opus install-opus: export NO_DOXYGEN = 1
121 121
122 opus: all 122 opus: all
123 check-opus: check 123 check-opus: check
124 install-opus: install 124 install-opus: install
125 125
126 126
127 # Or just the docs 127 # Or just the docs
128 docs: 128 docs:
129 » cd doc && $(MAKE) $(AM_MAKEFLAGS) 129 » ( cd doc && $(MAKE) $(AM_MAKEFLAGS) )
130 130
131 install-docs: 131 install-docs:
132 » cd doc && $(MAKE) $(AM_MAKEFLAGS) install 132 » ( cd doc && $(MAKE) $(AM_MAKEFLAGS) install )
133 133
134 134
135 # Or everything (by default) 135 # Or everything (by default)
136 all-local: 136 all-local:
137 » @[ -n "$(NO_DOXYGEN)" ] || cd doc && $(MAKE) $(AM_MAKEFLAGS) 137 » @[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) )
138 138
139 install-data-local: 139 install-data-local:
140 » @[ -n "$(NO_DOXYGEN)" ] || cd doc && $(MAKE) $(AM_MAKEFLAGS) install 140 » @[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) install )
141 141
142 clean-local: 142 clean-local:
143 » -cd doc && $(MAKE) $(AM_MAKEFLAGS) clean 143 » -( cd doc && $(MAKE) $(AM_MAKEFLAGS) clean )
144 144
145 uninstall-local: 145 uninstall-local:
146 » cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall 146 » ( cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall )
147 147
148 148
149 .PHONY: opus check-opus install-opus docs install-docs 149 .PHONY: opus check-opus install-opus docs install-docs
OLDNEW
« no previous file with comments | « COPYING ('k') | Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698