diff Makefile @ 20:f664eeb55cb4

Mostly broken VDP core and savestate viewer
author Mike Pavone <pavone@retrodev.com>
date Sat, 08 Dec 2012 02:00:54 -0800
parents 3e7bfde7606e
children 3b79cbcf6846
line wrap: on
line diff
--- a/Makefile	Tue Dec 04 19:25:54 2012 -0800
+++ b/Makefile	Sat Dec 08 02:00:54 2012 -0800
@@ -1,5 +1,6 @@
+LIBS=sdl
 
-all : dis trans
+all : dis trans stateview
 
 dis : dis.o 68kinst.o
 	$(CC) -o dis dis.o 68kinst.o
@@ -7,6 +8,9 @@
 trans : trans.o 68kinst.o gen_x86.o m68k_to_x86.o runtime.o mem.o
 	$(CC) -o trans trans.o 68kinst.o gen_x86.o m68k_to_x86.o runtime.o mem.o
 
+stateview : stateview.o vdp.o render_sdl.o
+	$(CC) -o stateview stateview.o vdp.o render_sdl.o `pkg-config --libs $(LIBS)`
+
 test_x86 : test_x86.o gen_x86.o
 	$(CC) -o test_x86 test_x86.o gen_x86.o
 
@@ -17,10 +21,10 @@
 	$(CC) -c -o $@ $<
 
 %.o : %.c
-	$(CC) -ggdb -std=gnu99 -c -o $@ $<
+	$(CC) -ggdb -std=gnu99 `pkg-config --cflags-only-I $(LIBS)` -c -o $@ $<
 
 %.bin : %.s68
 	vasmm68k_mot -Fbin -m68000 -spaces -o $@ $<
 
 clean :
-	rm -rf dis trans test_x86 gen_fib *.o
+	rm -rf dis trans stateview test_x86 gen_fib *.o