chiark / gitweb /
changelog: start 0.6.6
[secnet.git] / Dir.sd.mk
index a2c54eb3eaf9cf26e6425d738907f9da1a5b8abd..915d7573de5313924264996f2950c01e65e38e57 100644 (file)
--- a/Dir.sd.mk
+++ b/Dir.sd.mk
@@ -20,7 +20,7 @@
 .PHONY:        all clean realclean distclean dist install
 
 PACKAGE:=secnet
-VERSION=0.6.0
+VERSION=0.6.2
 
 VPATH:=@srcdir@
 srcdir:=@srcdir@
@@ -78,6 +78,12 @@ STALE_PYTHON_FILES=  $(foreach e, py pyc, \
 %.yy.c %.yy.h: %.fl
        flex --header=$*.yy.h -o$*.yy.c $<
 
+%.c: %.y
+# make has a builtin rule to run yacc, but we don't want that because
+# our conffile.c is handwritten, and we use conffile.yy.c for the
+# bison output.  There is no need to do likewise for flex because
+# our flex input files are end in .fl, not .l.
+
 %.tab.c %.tab.h:       %.y
        bison -d -o $@ $<