summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-02-16 01:01:45 +0100
committerReid <reidyaro@gmail.com>2016-02-16 01:01:45 +0100
commitf7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1 (patch)
tree94ea5d75c0ebbf7df3080d218bd29b9642361188
parente9fc92e06e883cc189ebd4309ca95553e696cbab (diff)
downloadtools-f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1.tar.gz
tools-f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1.tar.bz2
tools-f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1.tar.xz
tools-f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1.zip
Improve the makefile and add a field for the wiki, now works:
- make, - make all, - make wiki, - make about-server.
-rw-r--r--contrib_xsl/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib_xsl/Makefile b/contrib_xsl/Makefile
index 7725863..7c3edea 100644
--- a/contrib_xsl/Makefile
+++ b/contrib_xsl/Makefile
@@ -2,7 +2,13 @@ XSLTPROC = xsltproc
CDDIR = ../../client-data
HELPDIR = help
+all: about-server wiki
+
about-server:
@mkdir -p $(CDDIR)/$(HELPDIR)
- @$(XSLTPROC) about-server.xsl $(CDDIR)/contributors.xml > $(CDDIR)/$(HELPDIR)/about-server.txt
+ @$(XSLTPROC) -o $(CDDIR)/$(HELPDIR)/about-server.txt about-server.xsl contributors.xml
@echo "The file about-server.txt was created successfully."
+
+wiki:
+ @$(XSLTPROC) wiki.xsl contributors.xml | less
+ @echo "You can now place this output in: http://wiki.evolonline.org/contributors"