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

Side by Side Diff: third_party/opus/src/doc/Makefile.am

Issue 2195313002: Remove Opus from DEPS and import a local copy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Local copy of opus, opus/src/.gitignore, opus/DEPS, update README.chromium Created 4 years, 4 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
« no previous file with comments | « third_party/opus/src/doc/Doxyfile.in ('k') | third_party/opus/src/doc/TODO » ('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 ## Process this file with automake to produce Makefile.in
2
3 DOCINPUTS = $(top_srcdir)/include/opus.h \
4 $(top_srcdir)/include/opus_multistream.h \
5 $(top_srcdir)/include/opus_defines.h \
6 $(top_srcdir)/include/opus_types.h \
7 $(top_srcdir)/include/opus_custom.h \
8 $(top_srcdir)/doc/header.html \
9 $(top_srcdir)/doc/footer.html \
10 $(top_srcdir)/doc/customdoxygen.css
11
12 EXTRA_DIST = customdoxygen.css Doxyfile.in footer.html header.html \
13 opus_logo.svg trivial_example.c
14
15
16 if HAVE_DOXYGEN
17
18 all-local: doxygen-build.stamp
19
20 doxygen-build.stamp: Doxyfile $(DOCINPUTS)
21 doxygen
22 touch $@
23
24 install-data-local:
25 $(INSTALL) -d $(DESTDIR)$(docdir)/html/search
26 for f in `find html -type f \! -name "installdox"`; do \
27 $(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f; \
28 done
29
30 $(INSTALL) -d $(DESTDIR)$(mandir)/man3
31 cd man && find man3 -type f -name opus_*.3 \
32 -exec $(INSTALL_DATA) \{} $(DESTDIR)$(mandir)/man3 \;
33
34 clean-local:
35 $(RM) -r html
36 $(RM) -r latex
37 $(RM) -r man
38 $(RM) doxygen-build.stamp
39 $(RM) doxygen_sqlite3.db
40
41 uninstall-local:
42 $(RM) -r $(DESTDIR)$(docdir)/html
43 $(RM) $(DESTDIR)$(mandir)/man3/opus_*.3 $(DESTDIR)$(mandir)/man3/opus.h. 3
44
45 endif
OLDNEW
« no previous file with comments | « third_party/opus/src/doc/Doxyfile.in ('k') | third_party/opus/src/doc/TODO » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698