summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2012-12-18 02:16:42 -0800
committerMike Pavone <pavone@retrodev.com>2012-12-18 02:16:42 -0800
commit0a4dc409df4784b0d115755772c123e6a1adc3e6 (patch)
treecd4d6b595e1d7ac6124cab70e3a2f726241c9cad /Makefile
parentb13bafe99c81764a0895add77a6b16361cdc8e1f (diff)
Get Flavio's color bar demo kind of sort of working
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2b5554e..b2b6d88 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,9 @@
LIBS=sdl
-all : dis trans stateview
+all : dis trans stateview blastem
+
+blastem : blastem.o 68kinst.o gen_x86.o m68k_to_x86.o runtime.o mem.o vdp.o render_sdl.o
+ $(CC) -o blastem blastem.o 68kinst.o gen_x86.o m68k_to_x86.o runtime.o mem.o vdp.o render_sdl.o `pkg-config --libs $(LIBS)`
dis : dis.o 68kinst.o
$(CC) -o dis dis.o 68kinst.o