]> Pileus Git - ~andy/ct/blob - knot/makefile
Add timestamp checking
[~andy/ct] / knot / makefile
1 # Settings
2 CT        = ../ct
3 PROG      = knot
4 SOURCES   = knot.c html.c
5 CPPFLAGS  = -I..
6
7 # Targets
8 test: crown.html hitch.html overhand.html
9
10 # Rules
11 %.html: %.txt knot makefile
12         ./knot < $< > $@
13
14 include ../common.mk