blob: aa353ce829aacaa848ba89267b4d6217f9621288 (
plain) (
blame)
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)
|