diff options
author | Mike Pavone <pavone@retrodev.com> | 2019-04-03 00:17:30 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2019-04-03 00:17:30 -0700 |
commit | 49c6aa324bfb077f79792301e021949783f40aa4 (patch) | |
tree | 57d8e61e0b34c33c9eeac9ea00497664283c5c98 /Makefile | |
parent | 4d0eb2bb1792d3da3e190db7d0b0454aee27e8d5 (diff) |
Add an explicit rule for termhelper as it was relying on a built-in rule before
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |