aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-10-08 23:54:26 -0400
committerTucker Evans <tuckerevans24@gmail.com>2019-10-08 23:54:26 -0400
commit26d81965f8fdb68076d81132ca3ea9c4c77da2ee (patch)
treeb39f044413cb2991c80f67aed71a6c5c52195103
parent0de23c97e1aee2fb7896c03b34bc36e9fc1ffa51 (diff)
Fix makefile headers now included for pc.y and pc.l
-rw-r--r--makefile4
1 files 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