comparison Makefile @ 292:b970ea214ecb

Added z80 test generator and z80 test runner.
author Mike Pavone <pavone@retrodev.com>
date Wed, 08 May 2013 14:40:48 -0700
parents a8ee7934a1f8
children 15dd6418fe67
comparison
equal deleted inserted replaced
291:eea3b118940d 292:b970ea214ecb
23 $(CC) -o trans trans.o 68kinst.o gen_x86.o m68k_to_x86.o x86_backend.o runtime.o mem.o 23 $(CC) -o trans trans.o 68kinst.o gen_x86.o m68k_to_x86.o x86_backend.o runtime.o mem.o
24 24
25 transz80 : transz80.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o 25 transz80 : transz80.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o
26 $(CC) -o transz80 transz80.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o 26 $(CC) -o transz80 transz80.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o
27 27
28 ztestrun : ztestrun.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o
29 $(CC) -o ztestrun ztestrun.o z80inst.o gen_x86.o z80_to_x86.o x86_backend.o zruntime.o mem.o
30
31 ztestgen : ztestgen.o z80inst.o
32 $(CC) -o ztestgen ztestgen.o z80inst.o
33
28 stateview : stateview.o vdp.o render_sdl.o 34 stateview : stateview.o vdp.o render_sdl.o
29 $(CC) -o stateview stateview.o vdp.o render_sdl.o `pkg-config --libs $(LIBS)` 35 $(CC) -o stateview stateview.o vdp.o render_sdl.o `pkg-config --libs $(LIBS)`
30 36
31 test_x86 : test_x86.o gen_x86.o 37 test_x86 : test_x86.o gen_x86.o
32 $(CC) -o test_x86 test_x86.o gen_x86.o 38 $(CC) -o test_x86 test_x86.o gen_x86.o