diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-29 13:19:42 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-29 13:19:51 -0700 |
commit | 0be5457bca301cb46971d1b343904ba3c760fca1 (patch) | |
tree | 67ff9bcb98bcad2561880bef4c821c7c8ce6e739 /Makefile | |
parent | 6e04611be42b67d9f8913f3786bc632fdcce8a3d (diff) |
driver.o needs config.h
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |