aboutsummaryrefslogtreecommitdiffstats
path: root/doc/plan/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/plan/Makefile')
-rw-r--r--doc/plan/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/plan/Makefile b/doc/plan/Makefile
new file mode 100644
index 000000000..aa353ce82
--- /dev/null
+++ b/doc/plan/Makefile
@@ -0,0 +1,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)