diff options
author | Reid <reidyaro@gmail.com> | 2016-02-16 01:01:45 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-02-16 01:01:45 +0100 |
commit | f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1 (patch) | |
tree | 94ea5d75c0ebbf7df3080d218bd29b9642361188 /contrib_xsl/Makefile | |
parent | e9fc92e06e883cc189ebd4309ca95553e696cbab (diff) | |
download | evol-tools-f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1.tar.gz evol-tools-f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1.tar.bz2 evol-tools-f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1.tar.xz evol-tools-f7ceb4204b58d97cf8362cfbe2cd923cbfa00ae1.zip |
Improve the makefile and add a field for the wiki, now works:
- make,
- make all,
- make wiki,
- make about-server.
Diffstat (limited to 'contrib_xsl/Makefile')
-rw-r--r-- | contrib_xsl/Makefile | 8 |
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" |