blob: 7c3edea27d8a18fdbc8387915fd51cf499b2d40e (
plain) (
tree)
|
|
XSLTPROC = xsltproc
CDDIR = ../../client-data
HELPDIR = help
all: about-server wiki
about-server:
@mkdir -p $(CDDIR)/$(HELPDIR)
@$(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"
|