Fixed a parallel build race condition (forgot to declare a dependency to
authorDavid Given <dg@cowlark.com>
Sun, 9 Nov 2014 17:47:51 +0000 (18:47 +0100)
committerDavid Given <dg@cowlark.com>
Sun, 9 Nov 2014 17:47:51 +0000 (18:47 +0100)
the makefile).

util/ncgg/build.mk

index c3a7f31..aaa8176 100644 (file)
@@ -26,7 +26,7 @@ $(call cfile, $D/var.c)
 $(call cfile, $D/hall.c)
 
 $(eval CLEANABLES += $(OBJDIR)/$D/enterkeyw.c)
-$(OBJDIR)/$D/enterkeyw.c: $D/cvtkeywords $D/keywords
+$(OBJDIR)/$D/enterkeyw.c: $D/cvtkeywords $D/keywords $(OBJDIR)/$D/y.tab.h
        @echo KEYWORDS $$@
        @mkdir -p $$(dir $$@)
        $(hide) cd $$(dir $$@) && sh $(abspath $D/cvtkeywords) $(abspath $D/keywords)