aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-04-29 13:19:42 -0700
committerMichael Forney <mforney@mforney.org>2019-04-29 13:19:51 -0700
commit0be5457bca301cb46971d1b343904ba3c760fca1 (patch)
tree67ff9bcb98bcad2561880bef4c821c7c8ce6e739 /Makefile
parent6e04611be42b67d9f8913f3786bc632fdcce8a3d (diff)
driver.o needs config.h
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index baf879c..bcb7dcf 100644
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,7 @@ $(objdir)/cc-qbe: $(OBJ)
$(CC) $(LDFLAGS) -o $@ $(OBJ)
$(objdir)/decl.o : decl.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ decl.c
-$(objdir)/driver.o : driver.c util.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ driver.c
+$(objdir)/driver.o : driver.c util.h config.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ driver.c
$(objdir)/eval.o : eval.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ eval.c
$(objdir)/expr.o : expr.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ expr.c
$(objdir)/init.o : init.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ init.c