summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'users/robbat2/guidexml/Makefile')
-rw-r--r--users/robbat2/guidexml/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/users/robbat2/guidexml/Makefile b/users/robbat2/guidexml/Makefile
deleted file mode 100644
index 21d571fc81..0000000000
--- a/users/robbat2/guidexml/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# Quick makefile for building docs
-# $Header: /var/cvsroot/gentoo/users/robbat2/guidexml/Makefile,v 1.3 2003/10/17 07:57:30 robbat2 Exp $
-
-SOURCES = mailsolution.xml
-OUTPUTS = $(SOURCES:.xml=.html)
-XSLTPROC = xsltproc
-
-%.html: %.xml
- $(XSLTPROC) -o $@ $^
- sed -e 's,"/css/,"htdocs/css/,g' -i $@
- sed -e 's,"/images/,"http://www.gentoo.org/images/,g' -i $@
- sed -e 's, ,,g' -i $@
-
-all: $(OUTPUTS)
-
-clean:
- rm $(OUTPUTS)
-