chiark / gitweb /
Add build machinery for the manual.
[sod] / doc / Makefile.am
diff --git a/doc/Makefile.am b/doc/Makefile.am
new file mode 100644 (file)
index 0000000..882f01b
--- /dev/null
@@ -0,0 +1,74 @@
+### -*-makefile-*-
+###
+### Build script for the manual
+###
+### (c) 2015 Straylight/Edgeware
+###
+
+###----- Licensing notice ---------------------------------------------------
+###
+### This file is part of the Sensble Object Design, an object system for C.
+###
+### SOD is free software; you can redistribute it and/or modify
+### it under the terms of the GNU General Public License as published by
+### the Free Software Foundation; either version 2 of the License, or
+### (at your option) any later version.
+###
+### SOD is distributed in the hope that it will be useful,
+### but WITHOUT ANY WARRANTY; without even the implied warranty of
+### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+### GNU General Public License for more details.
+###
+### You should have received a copy of the GNU General Public License
+### along with SOD; if not, write to the Free Software Foundation,
+### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+include $(top_srcdir)/vars.am
+
+doc_DATA                =
+TEX_FILES               =
+
+CLEANFILES             += *.aux *.out *.log *.toc
+EXTRA_DIST             += $(TEX_FILES)
+
+###--------------------------------------------------------------------------
+### The manual.
+
+## The master file.
+TEX_FILES              += sod.tex
+
+## Main document styling and definitions.
+TEX_FILES              += sod.sty
+
+## Tutorial.
+TEX_FILES              += tutorial.tex
+
+## Reference.
+TEX_FILES              += concepts.tex
+##TEX_FILES            += cmdline.tex
+TEX_FILES              += syntax.tex
+TEX_FILES              += runtime.tex
+TEX_FILES              += structures.tex
+
+## Lisp interface.
+TEX_FILES              += lispintro.tex
+TEX_FILES              += misc.tex
+TEX_FILES              += parsing.tex
+TEX_FILES              += clang.tex
+##TEX_FILES            += meta.tex
+##TEX_FILES            += layout.tex
+##TEX_FILES            += module.tex
+##TEX_FILES            += ouptut.tex
+
+## Other hacks.
+TEX_FILES              += cutting-room-floor.tex
+
+## Building the output documents.
+MAINTAINERCLEANFILES   += sod.pdf
+EXTRA_DIST             += sod.pdf
+doc_DATA               += sod.pdf
+sod.pdf: $(TEX_FILES)
+       cd $(srcdir) && pdflatex --output-directory=$(abs_builddir) sod.tex
+       cd $(srcdir) && pdflatex --output-directory=$(abs_builddir) sod.tex
+
+###----- That's all, folks --------------------------------------------------