got rid of the docbook in favor of just a pure html
[to_fork_or_not] / Makefile
diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
index e87b8ff..0000000
--- a/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/make -f
-
-SOURCE = to_fork_or_not_to_fork.xml
-OUTPUT_STEM = to_fork_or_not_to_fork
-
-CURRENT_DISTRO = $(shell test -e /etc/debian_version && echo "debian")
-ifeq ($(CURRENT_DISTRO),debian)
-       NWDBXSL = /usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl
-else
-       NWDBXSL = /usr/share/xml/docbook/stylesheet/nwalsh/current/html/docbook.xsl
-endif
-
-html:
-       xsltproc -o "$(OUTPUT_STEM).html" "$(NWDBXSL)" "$(SOURCE)"
-
-pdf:
-       xmlto fo "$(SOURCE)"
-       fop "$(OUTPUT_STEM).fo" "$(OUTPUT_STEM).pdf" 
-       
-build: html pdf
-
-viewpdf: pdf
-       xpdf "$(OUTPUT_STEM).pdf"
-       
-validate:
-       xmllint --noout --noent "$(SOURCE)"
-
-# Remove the mess
-clean:
-       rm -rf "$(OUTPUT_STEM).html" "$(OUTPUT_STEM).fo" "$(OUTPUT_STEM).pdf" 
-       
-#      rm -rf ./tmp
-
-
-# some future rules
-#move:
-#install: build move

Benjamin Mako Hill || Want to submit a patch?