summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Shubin <james@shubin.ca>2013-11-18 05:35:57 -0500
committerJames Shubin <james@shubin.ca>2013-11-18 05:35:57 -0500
commit30fde0b1d78cb018423e110aadba65062758e90b (patch)
tree595ee10d76d0d49978b636b5154b2ee99d4aa78d /Makefile
parent1568e407c1eeccc6c55be303055a4fbb21a0ab29 (diff)
downloadpuppet-gluster-30fde0b1d78cb018423e110aadba65062758e90b.tar.gz
puppet-gluster-30fde0b1d78cb018423e110aadba65062758e90b.tar.xz
puppet-gluster-30fde0b1d78cb018423e110aadba65062758e90b.zip
Added documentation to Puppet-Gluster.
Run 'make docs' to generate an up-to-date .pdf of the documentation. Ironically, one reason I first started writing Puppet code, was so that I wouldn't have to write as much documentation anymore.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..6b1528a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+.PHONY: all docs
+.SILENT:
+
+all: docs
+
+docs: puppet-gluster-documentation.pdf
+
+puppet-gluster-documentation.pdf: DOCUMENTATION.md
+ pandoc DOCUMENTATION.md -o 'puppet-gluster-documentation.pdf'
+