summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-05-27 09:54:58 -0700
committerMike Pavone <pavone@retrodev.com>2013-05-27 09:54:58 -0700
commit140052b8720dabfda7a66f2b754a81ce902e3d34 (patch)
treeec0a59a9ba12c3a1179ab87858881b786606b476 /Makefile
parent1def7c1cb5605bfe1417cdc5b64e5a4c6aac0007 (diff)
YM2612 WIP snapshot before register refactor
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9c73393..3dee3fa 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ endif
all : dis trans stateview blastem
blastem : blastem.o 68kinst.o gen_x86.o m68k_to_x86.o z80inst.o z80_to_x86.o x86_backend.o runtime.o zruntime.o mem.o vdp.o ym2612.o psg.o render_sdl.o
- $(CC) -o blastem blastem.o 68kinst.o gen_x86.o m68k_to_x86.o z80inst.o z80_to_x86.o x86_backend.o runtime.o zruntime.o mem.o vdp.o ym2612.o psg.o render_sdl.o `pkg-config --libs $(LIBS)`
+ $(CC) -ggdb -o blastem blastem.o 68kinst.o gen_x86.o m68k_to_x86.o z80inst.o z80_to_x86.o x86_backend.o runtime.o zruntime.o mem.o vdp.o ym2612.o psg.o render_sdl.o `pkg-config --libs $(LIBS)`
dis : dis.o 68kinst.o
$(CC) -o dis dis.o 68kinst.o