From 26d81965f8fdb68076d81132ca3ea9c4c77da2ee Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Tue, 8 Oct 2019 23:54:26 -0400 Subject: Fix makefile headers now included for pc.y and pc.l --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 72679de..0ba1dd0 100644 --- a/makefile +++ b/makefile @@ -24,10 +24,10 @@ scope.o: scope.c headers node.o: node.c headers $(CC) $(FLAGS) -c node.c -y.tab.o: y.tab.c +y.tab.o: y.tab.c headers $(CC) $(FLAGS) -c y.tab.c -lex.yy.o: lex.yy.c +lex.yy.o: lex.yy.c headers $(CC) $(FLAGS) -c lex.yy.c y.tab.c: pc.y -- cgit v1.1