aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorMatthew Gregan <[email protected]>2016-09-22 01:40:55 +1200
committerMatthew Gregan <[email protected]>2016-10-12 17:06:10 +1300
commit0aea9e0438cabfe6703d587547c3a74e11380489 (patch)
treee676269f45f44b69176207df0e1c918fcac119b1 /docs
parent22557d466eceb6ff6ba70ae30d2dcd87648cde0b (diff)
downloadcubeb-0aea9e0438cabfe6703d587547c3a74e11380489.tar.gz
cubeb-0aea9e0438cabfe6703d587547c3a74e11380489.zip
Replace autotools build system with CMake.
Diffstat (limited to 'docs')
-rw-r--r--docs/Doxyfile.in2
-rw-r--r--docs/Makefile.am38
2 files changed, 1 insertions, 39 deletions
diff --git a/docs/Doxyfile.in b/docs/Doxyfile.in
index db05c1f..2b52bce 100644
--- a/docs/Doxyfile.in
+++ b/docs/Doxyfile.in
@@ -7,6 +7,6 @@ CASE_SENSE_NAMES = NO
SORT_MEMBER_DOCS = NO
QUIET = YES
WARN_NO_PARAMDOC = YES
-INPUT = @top_srcdir@/include/cubeb
+INPUT = @CMAKE_CURRENT_SOURCE_DIR@/include/cubeb
GENERATE_HTML = YES
GENERATE_LATEX = NO
diff --git a/docs/Makefile.am b/docs/Makefile.am
deleted file mode 100644
index 5326ea1..0000000
--- a/docs/Makefile.am
+++ /dev/null
@@ -1,38 +0,0 @@
-doc_DATA = doxygen-build.stamp
-
-EXTRA_DIST = Doxyfile.in
-
-if HAVE_DOXYGEN
-doxygen-build.stamp: Doxyfile ../include/cubeb/cubeb.h
- doxygen
- touch doxygen-build.stamp
-else
-doxygen-build.stamp:
- echo "*** Warning: Doxygen not found; documentation will not be built."
- touch doxygen-build.stamp
-endif
-
-dist_docdir = $(distdir)/libcubeb
-
-dist-hook:
- if test -d html; then \
- mkdir $(dist_docdir); \
- echo -n "copying built documenation..."; \
- cp -rp html $(dist_docdir)/html; \
- echo "OK"; \
- fi
-
-
-install-data-local: doxygen-build.stamp
- $(mkinstalldirs) $(DESTDIR)$(docdir)
- if test -d html; then \
- cp -rp html $(DESTDIR)$(docdir)/html; \
- fi
-
-uninstall-local:
- rm -rf $(DESTDIR)$(docdir)
-
-clean-local:
- if test -d html; then rm -rf html; fi
- if test -f doxygen-build.stamp; then rm -f doxygen-build.stamp; fi
-