ref: b8f50b4e1caa9ad805d0f4f341608dcabd6a64d7
parent: 909364782617723241d340f364c5df2dbcea0280
author: Ralph Giles <giles@thaumas.net>
date: Mon Sep 17 20:41:18 EDT 2012
Add a rough makefile for the documentation. Just runs doxygen for us, an optionally latex. The 'clean' target removes the doxygen output directories.
--- /dev/null
+++ b/doc/Makefile
@@ -1,0 +1,15 @@
+## GNU makefile for opusfile documentation.
+
+all: doxygen
+
+doxygen: Doxyfile ../include/opusfile.h
+ doxygen
+
+pdf: doxygen
+ make -C latex
+
+clean:
+ $(RM) -r html
+ $(RM) -r latex
+
+.PHONY: all clean doxygen