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

Unified 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, 5 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/src/doc/Makefile.am
diff --git a/third_party/opus/src/doc/Makefile.am b/third_party/opus/src/doc/Makefile.am
new file mode 100644
index 0000000000000000000000000000000000000000..31fddab49f985ecdd346ad3300be1d18a9d183f5
--- /dev/null
+++ b/third_party/opus/src/doc/Makefile.am
@@ -0,0 +1,45 @@
+## Process this file with automake to produce Makefile.in
+
+DOCINPUTS = $(top_srcdir)/include/opus.h \
+ $(top_srcdir)/include/opus_multistream.h \
+ $(top_srcdir)/include/opus_defines.h \
+ $(top_srcdir)/include/opus_types.h \
+ $(top_srcdir)/include/opus_custom.h \
+ $(top_srcdir)/doc/header.html \
+ $(top_srcdir)/doc/footer.html \
+ $(top_srcdir)/doc/customdoxygen.css
+
+EXTRA_DIST = customdoxygen.css Doxyfile.in footer.html header.html \
+ opus_logo.svg trivial_example.c
+
+
+if HAVE_DOXYGEN
+
+all-local: doxygen-build.stamp
+
+doxygen-build.stamp: Doxyfile $(DOCINPUTS)
+ doxygen
+ touch $@
+
+install-data-local:
+ $(INSTALL) -d $(DESTDIR)$(docdir)/html/search
+ for f in `find html -type f \! -name "installdox"`; do \
+ $(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f; \
+ done
+
+ $(INSTALL) -d $(DESTDIR)$(mandir)/man3
+ cd man && find man3 -type f -name opus_*.3 \
+ -exec $(INSTALL_DATA) \{} $(DESTDIR)$(mandir)/man3 \;
+
+clean-local:
+ $(RM) -r html
+ $(RM) -r latex
+ $(RM) -r man
+ $(RM) doxygen-build.stamp
+ $(RM) doxygen_sqlite3.db
+
+uninstall-local:
+ $(RM) -r $(DESTDIR)$(docdir)/html
+ $(RM) $(DESTDIR)$(mandir)/man3/opus_*.3 $(DESTDIR)$(mandir)/man3/opus.h.3
+
+endif
« 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