summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-09-10 21:20:54 -0700
committerMike Pavone <pavone@retrodev.com>2013-09-10 21:20:54 -0700
commite9ad8ed37b736c91d0bece08a648decbe3bccc56 (patch)
treec32756892ca59c73cbb5599c168cb99698f0109a /Makefile
parentc624a02df2f2086f9fe86ec05659959d2f25a580 (diff)
Fix vgmplay
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c6d5f6d..40c070a 100644
--- a/Makefile
+++ b/Makefile
@@ -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