2007-02-02 04:29:55 +00:00
|
|
|
|
|
|
|
|
DOCNAME = ardour_manual
|
|
|
|
|
|
|
|
|
|
# Default values, only set if not set in book Makefile
|
2007-02-14 11:23:38 +00:00
|
|
|
OUTDIR ?= tmp
|
|
|
|
|
XMLFILE ?= xml/$(DOCNAME).xml
|
|
|
|
|
XSLFILE ?= xsl/html.xsl
|
|
|
|
|
CSSFILE ?= $(DOCNAME).css
|
|
|
|
|
XSLTPROC ?= xsltproc
|
|
|
|
|
#PWD = $(shell pwd)
|
|
|
|
|
|
|
|
|
|
# xsltproc -output option gives I/O errors because??, so
|
|
|
|
|
# just move the html to the output directory
|
|
|
|
|
html:: clean
|
|
|
|
|
# creating output directory
|
|
|
|
|
-@mkdir $(OUTDIR)
|
|
|
|
|
# generating html
|
|
|
|
|
LANG=en_US.UTF-8 $(XSLTPROC) -xinclude $(XSLFILE) $(XMLFILE)
|
|
|
|
|
# copy html files to output directory
|
|
|
|
|
-@mv *.html $(OUTDIR)
|
|
|
|
|
# copy css file to output directory
|
|
|
|
|
-@cp css/$(CSSFILE) $(OUTDIR)/$(CSSFILE)
|
|
|
|
|
# copy the image files to the output directory
|
|
|
|
|
-@cp -r images $(OUTDIR)/images
|
2007-02-02 04:29:55 +00:00
|
|
|
|
|
|
|
|
.PHONY : html
|
|
|
|
|
|
2007-02-14 11:23:38 +00:00
|
|
|
test::
|
2007-02-02 04:29:55 +00:00
|
|
|
xmllint --noout --postvalid --xinclude $(XMLFILE)
|
2007-02-06 15:50:05 +00:00
|
|
|
|
2007-02-02 04:29:55 +00:00
|
|
|
.PHONY : test
|
|
|
|
|
|
|
|
|
|
clean::
|
2007-02-14 11:23:38 +00:00
|
|
|
@rm -rf $(OUTDIR)
|
2007-02-02 04:29:55 +00:00
|
|
|
|
|
|
|
|
.PHONY : clean
|
2007-02-06 15:50:05 +00:00
|
|
|
|
|
|
|
|
upload: html
|
|
|
|
|
cd tmp && tar cf - . | bzip2 > ../man.tar.bz2
|
|
|
|
|
scp man.tar.bz2 las@ardour.org:ardour.org
|
|
|
|
|
|
|
|
|
|
.PHONY : upload
|
|
|
|
|
|