diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-09-10 21:20:54 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-09-10 21:20:54 -0700 |
commit | e9ad8ed37b736c91d0bece08a648decbe3bccc56 (patch) | |
tree | c32756892ca59c73cbb5599c168cb99698f0109a /Makefile | |
parent | c624a02df2f2086f9fe86ec05659959d2f25a580 (diff) |
Fix vgmplay
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,8 +45,8 @@ ztestgen : ztestgen.o z80inst.o stateview : stateview.o vdp.o render_sdl.o config.o tern.o gst.o $(CC) -o stateview stateview.o vdp.o render_sdl.o config.o tern.o gst.o `pkg-config --libs $(LIBS)` -vgmplay : vgmplay.o render_sdl.o $(AUDIOOBJS) - $(CC) -o vgmplay vgmplay.o render_sdl.o $(AUDIOOBJS) `pkg-config --libs $(LIBS)` +vgmplay : vgmplay.o render_sdl.o config.o tern.o $(AUDIOOBJS) + $(CC) -o vgmplay vgmplay.o render_sdl.o config.o tern.o $(AUDIOOBJS) $(LDFLAGS) testgst : testgst.o gst.o $(CC) -o testgst testgst.o gst.o |