diff options
author | Michael Forney <mforney@mforney.org> | 2019-06-25 11:34:29 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-06-27 16:32:49 -0700 |
commit | 2afeff7d9e6a0a735f80bae9e932df376bc42590 (patch) | |
tree | c31df9ef60a94652aa2f1a52587800e4d5f1c9a5 /Makefile | |
parent | b237b938d0e10da65f951ed64e7e38ae5926c804 (diff) |
Pass target to cc-qbe
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -31,6 +31,7 @@ SRC=\ scope.c\ siphash.c\ stmt.c\ + targ.c\ token.c\ tree.c\ type.c\ @@ -54,6 +55,7 @@ $(objdir)/scan.o : scan.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) $(objdir)/scope.o : scope.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ scope.c $(objdir)/siphash.o : siphash.c $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ siphash.c $(objdir)/stmt.o : stmt.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ stmt.c +$(objdir)/targ.o : targ.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ targ.c $(objdir)/token.o : token.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ token.c $(objdir)/tree.o : tree.c util.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ tree.c $(objdir)/type.o : type.c util.h cc.h $(stagedeps) ; $(CC) $(CFLAGS) -c -o $@ type.c |