Create a skeletal Makefile like this:
PROC=xsltproc
STYLEDIR=../xsl
TABSTYLE=$(STYLEDIR)/tabular.xsl
STYLESHEET=$(TABSTYLE)
# Change the path in output-root to put your HTML output elsewhere
STYLEOPT= --stringparam output-root .
.PHONY : clean
all:
make website
include depends.tabular
autolayout.xml: layout.xml
$(PROC) --output $@ $(STYLEDIR)/autolayout.xsl $<
make depends
%.html: autolayout.xml
$(PROC) --output $@ $(STYLEOPT) $(STYLESHEET) $(filter-out autolayout.xml,$^)
depends: autolayout.xml
$(PROC) --output depends.tabular $(STYLEOPT) $(STYLEDIR)/makefile-dep.xsl $<
You'll have to change the PROC setting and the command-lines
used to run the processor.