diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-04 12:00:42 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-04 12:00:42 -0800 |
commit | 087a93bc6df6408b89577a5d159fdb355dd43daa (patch) | |
tree | 03111660b7ae515ed5889557234920651217a4ec | |
parent | 2eb32065b23a5cd90a6ae8908ae8a8ff24a4f209 (diff) |
Fix secondary targets
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -190,11 +190,11 @@ ztestrun : ztestrun.o $(Z80OBJS) $(TRANSOBJS) ztestgen : ztestgen.o z80inst.o $(CC) -ggdb -o ztestgen ztestgen.o z80inst.o -stateview$(EXE) : stateview.o vdp.o render_sdl.o $(CONFIGOBJS) gst.o +stateview$(EXE) : stateview.o vdp.o render_sdl.o ppm.o $(CONFIGOBJS) gst.o $(CC) -o $@ $^ $(LDFLAGS) $(FIXUP) ./$@ -vgmplay$(EXE) : vgmplay.o render_sdl.o $(CONFIGOBJS) $(AUDIOOBJS) +vgmplay$(EXE) : vgmplay.o render_sdl.o ppm.o $(CONFIGOBJS) $(AUDIOOBJS) $(CC) -o $@ $^ $(LDFLAGS) $(FIXUP) ./$@ |