9fbeeb118
1 2 3 4 5 6 7 8 9 10 11 12 13 14
SRC = plan.xml TARGET = plan.html XSLT = plan2table.xsl all: validate transform transform: xsltproc --output $(TARGET) $(XSLT) $(SRC) validate: xmllint --noout --valid $(SRC) clean: rm -f $(TARGET)