summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2013-10-05 11:26:38 -0700
committerKaz Kylheku <kaz@kylheku.com>2013-10-05 11:26:38 -0700
commite022ebd1f2b414837b60f434e6db26e2c999207a (patch)
tree69f4b0da06f9b44642bac62906cddcd1005e8924 /Makefile
parent33c2ad9765e7dc34b9c645b304cfd51524056d9e (diff)
downloadhc-e022ebd1f2b414837b60f434e6db26e2c999207a.tar.gz
hc-e022ebd1f2b414837b60f434e6db26e2c999207a.tar.bz2
hc-e022ebd1f2b414837b60f434e6db26e2c999207a.zip
Ground work for supporting attribute filtering.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0b9b82a..9a1cda8 100644
--- a/Makefile
+++ b/Makefile
@@ -5,10 +5,13 @@ hc: lex.yy.o hc.o
lex.yy.o: lex.yy.c hc.h
-hc.o: hc.c hc.h
+hc.o: hc.c hc.h wl.h
lex.yy.c: hc.l hc.h
$(LEX) -i -8 hc.l
+wl.h: wl.txr wl
+ txr wl.txr > $@
+
clean:
-rm hc lex.yy.o lex.yy.c