summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2013-01-06 15:10:37 +0100
committerGravatar Tom Willemsen2013-01-06 15:10:37 +0100
commit759b8b0cf97c21d897c0d1929421c803a6619bd1 (patch)
tree670fbe5bba355a9ff78d806e02934556fa19b90f /Makefile
parent58a7c046d22579cc5156fb34429e5ea7ea5a5526 (diff)
downloadmarkam-759b8b0cf97c21d897c0d1929421c803a6619bd1.tar.gz
markam-759b8b0cf97c21d897c0d1929421c803a6619bd1.zip
Add more documentation formats to Makefile
`dvi', `pdf' and `ps' can be compiled/installed by explicitly specifying `make FORMAT' or `make install-FORMAT'.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ebe51e9..75355fb 100644
--- a/Makefile
+++ b/Makefile
@@ -13,3 +13,21 @@ $(dirs):
$(install-dirs): install-%:
$(MAKE) -C $*/ install
+
+dvi:
+ $(MAKE) -C doc/ dvi
+
+pdf:
+ $(MAKE) -C doc/ pdf
+
+ps:
+ $(MAKE) -C doc/ ps
+
+install-dvi:
+ $(MAKE) -C doc/ install-dvi
+
+install-pdf:
+ $(MAKE) -C doc/ install-pdf
+
+install-ps:
+ $(MAKE) -C doc/ install-ps