# HG changeset patch # User Mike Pavone # Date 1342382818 25200 # Node ID 2dc785f673276a8e52d5d8eb38b70d6ff1d59df2 # Parent 814e3d482ad35d577cbee6645826140ec5d8c1bc Use new tpc shell script so that errors are displayed on the console diff -r 814e3d482ad3 -r 2dc785f67327 Makefile --- a/Makefile Sun Jul 15 11:07:11 2012 -0700 +++ b/Makefile Sun Jul 15 13:06:58 2012 -0700 @@ -4,7 +4,7 @@ BINS := $(addprefix $(OUTDIR)/,sim lifter) OBJS := $(addprefix $(OBJDIR)/,sim.tp.c lifter.tp.c) TPDIR := ../tabletprog -TPC := $(TPDIR)/tpc.js +TPC := $(TPDIR)/tpc TPFLAGS := ifdef compilerdebug @@ -17,7 +17,7 @@ gcc -ggdb -I$(TPDIR) -o $@ $< $(TPDIR)/runtime/object.c $(OBJDIR)/%.tp.c : $(SRCDIR)/%.tp - d8 $(TPC) -- -basedir $(TPDIR)/ -i src $(TPFLAGS) $< > $@ + $(TPC) -basedir $(TPDIR)/ -i src $(TPFLAGS) $< -o $@ clean : rm -f $(OBJS) $(BINS)