Hello ALUGers,
I'm embarrsed to admit that I'm just trying to use make for the first time!
I'm trying to get it to automate some XSLT transformations for me and I've got this so far:
======================================== SAXON=saxon8 FOP=fop
BUILD_DIR=www TEXT_ONLY_BUILD_DIR=www/text
$(BUILD_DIR)/index.html: index.xml meta-data.xml $(SAXON) -o $(BUILD_DIR)/index.html index.xml\ static-site/jounral-front-page2default.xsl ========================================
but it keeps telling me that there's "No rule to make target 'index.xml'". I thought that it was supposed to go like this:
target: source command
and that, in this case, 'source' would be 'index.xml meta-data.xml' and it would make the target if the source files had changed.
Can someone put me right?
Cheers, Richard