summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2019-04-03 00:17:30 -0700
committerMike Pavone <pavone@retrodev.com>2019-04-03 00:17:30 -0700
commit49c6aa324bfb077f79792301e021949783f40aa4 (patch)
tree57d8e61e0b34c33c9eeac9ea00497664283c5c98 /Makefile
parent4d0eb2bb1792d3da3e190db7d0b0454aee27e8d5 (diff)
Add an explicit rule for termhelper as it was relying on a built-in rule before
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 36d843a..468d6f4 100644
--- a/Makefile
+++ b/Makefile
@@ -277,6 +277,9 @@ blastem$(EXE) : $(MAINOBJS)
blastjag$(EXE) : jaguar.o jag_video.o $(RENDEROBJS) serialize.o $(M68KOBJS) $(TRANSOBJS) $(CONFIGOBJS)
$(CC) -o $@ $^ $(LDFLAGS)
+termhelper : termhelper.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
dis$(EXE) : dis.o 68kinst.o tern.o vos_program_module.o
$(CC) -o $@ $^ $(OPT)