summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-05-08 14:40:48 -0700
committerMike Pavone <pavone@retrodev.com>2013-05-08 14:40:48 -0700
commit33f42fb3af1ada5ed2135cb3dfc0eff42521d77b (patch)
treed4aa9db3654c66bb1147c8a1fd662d70fa5fb2c0 /Makefile
parent4edbf96208daa3168a84456448614b659f4f1c57 (diff)
Added z80 test generator and z80 test runner.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b6cd937..3df5c1d 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,12 @@ trans : trans.o 68kinst.o gen_x86.o m68k_to_x86.o x86_backend.o runtime.o mem.o
transz80 : transz80.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o
$(CC) -o transz80 transz80.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o
+ztestrun : ztestrun.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o
+ $(CC) -o ztestrun ztestrun.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o
+
+ztestgen : ztestgen.o z80inst.o
+ $(CC) -o ztestgen ztestgen.o z80inst.o
+
stateview : stateview.o vdp.o render_sdl.o
$(CC) -o stateview stateview.o vdp.o render_sdl.o `pkg-config --libs $(LIBS)`