summaryrefslogtreecommitdiff
path: root/2005/d/dev/todo/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '2005/d/dev/todo/Makefile')
-rw-r--r--2005/d/dev/todo/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/2005/d/dev/todo/Makefile b/2005/d/dev/todo/Makefile
new file mode 100644
index 0000000..91d0481
--- /dev/null
+++ b/2005/d/dev/todo/Makefile
@@ -0,0 +1,18 @@
+
+all: TODO.xml TODO.html
+
+doc: all
+
+.DELETE_ON_ERROR:
+
+%.html: %.xml tasklist.xsl tasklist.dtd
+ xsltproc tasklist.xsl $< > $@
+
+%.xml: % tasklist.pl
+ ./tasklist.pl < $< > $@
+
+%.valid: %.xml tasklist.dtd
+ rxp -V $< > $@ 2>&1
+
+clean:
+ rm -f TODO.xml TODO.html TODO.valid *.bak *~