diff Makefile @ 466:bc9e0829ffc7

Fix vgmplay
author Mike Pavone <pavone@retrodev.com>
date Tue, 10 Sep 2013 21:20:54 -0700
parents dc322bc77ea2
children c08a4efeee7f
line wrap: on
line diff
--- a/Makefile	Tue Sep 10 21:07:13 2013 -0700
+++ b/Makefile	Tue Sep 10 21:20:54 2013 -0700
@@ -45,8 +45,8 @@
 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