comparison Makefile @ 1943:794a5c9a2c73

Kill the stateview target as it is not very useful these days and breaks a lot
author Michael Pavone <pavone@retrodev.com>
date Sun, 26 Apr 2020 14:54:00 -0700
parents f23e70fb6607
children c3c62dbf1ceb
comparison
equal deleted inserted replaced
1942:35722beaf895 1943:794a5c9a2c73
258 258
259 ifdef FONT_PATH 259 ifdef FONT_PATH
260 CFLAGS+= -DFONT_PATH='"'$(FONT_PATH)'"' 260 CFLAGS+= -DFONT_PATH='"'$(FONT_PATH)'"'
261 endif 261 endif
262 262
263 ALL=dis$(EXE) zdis$(EXE) stateview$(EXE) vgmplay$(EXE) blastem$(EXE) 263 ALL=dis$(EXE) zdis$(EXE) vgmplay$(EXE) blastem$(EXE)
264 ifneq ($(OS),Windows) 264 ifneq ($(OS),Windows)
265 ALL+= termhelper 265 ALL+= termhelper
266 endif 266 endif
267 267
268 ifeq ($(MAKECMDGOALS),libblastem.$(SO)) 268 ifeq ($(MAKECMDGOALS),libblastem.$(SO))
305 ztestrun : ztestrun.o serialize.o $(Z80OBJS) $(TRANSOBJS) 305 ztestrun : ztestrun.o serialize.o $(Z80OBJS) $(TRANSOBJS)
306 $(CC) -o ztestrun $^ $(OPT) 306 $(CC) -o ztestrun $^ $(OPT)
307 307
308 ztestgen : ztestgen.o z80inst.o 308 ztestgen : ztestgen.o z80inst.o
309 $(CC) -ggdb -o ztestgen ztestgen.o z80inst.o 309 $(CC) -ggdb -o ztestgen ztestgen.o z80inst.o
310
311 stateview$(EXE) : stateview.o vdp.o $(RENDEROBJS) serialize.o $(CONFIGOBJS) gst.o render_audio.o
312 $(CC) -o $@ $^ $(LDFLAGS)
313 $(FIXUP) ./$@
314 310
315 vgmplay$(EXE) : vgmplay.o $(RENDEROBJS) serialize.o $(CONFIGOBJS) $(AUDIOOBJS) 311 vgmplay$(EXE) : vgmplay.o $(RENDEROBJS) serialize.o $(CONFIGOBJS) $(AUDIOOBJS)
316 $(CC) -o $@ $^ $(LDFLAGS) 312 $(CC) -o $@ $^ $(LDFLAGS)
317 $(FIXUP) ./$@ 313 $(FIXUP) ./$@
318 314