summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2020-04-26 14:54:00 -0700
committerMichael Pavone <pavone@retrodev.com>2020-04-26 14:54:00 -0700
commitcbd07294f432f9d9c393f98c42e92b6ee08545c1 (patch)
treef172ba4284771c235264bd284f3ba9a25595f0ab /Makefile
parent50a93edac0c361031cd6955cc84a8a6ac300d9b5 (diff)
Kill the stateview target as it is not very useful these days and breaks a lot
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 36a93c5..7794c9d 100644
--- a/Makefile
+++ b/Makefile
@@ -260,7 +260,7 @@ ifdef FONT_PATH
CFLAGS+= -DFONT_PATH='"'$(FONT_PATH)'"'
endif
-ALL=dis$(EXE) zdis$(EXE) stateview$(EXE) vgmplay$(EXE) blastem$(EXE)
+ALL=dis$(EXE) zdis$(EXE) vgmplay$(EXE) blastem$(EXE)
ifneq ($(OS),Windows)
ALL+= termhelper
endif
@@ -308,10 +308,6 @@ ztestrun : ztestrun.o serialize.o $(Z80OBJS) $(TRANSOBJS)
ztestgen : ztestgen.o z80inst.o
$(CC) -ggdb -o ztestgen ztestgen.o z80inst.o
-stateview$(EXE) : stateview.o vdp.o $(RENDEROBJS) serialize.o $(CONFIGOBJS) gst.o render_audio.o
- $(CC) -o $@ $^ $(LDFLAGS)
- $(FIXUP) ./$@
-
vgmplay$(EXE) : vgmplay.o $(RENDEROBJS) serialize.o $(CONFIGOBJS) $(AUDIOOBJS)
$(CC) -o $@ $^ $(LDFLAGS)
$(FIXUP) ./$@