comparison Makefile @ 260:625f8e4d5fd2

Initial stab at integartiong Z80 core
author Mike Pavone <pavone@retrodev.com>
date Tue, 30 Apr 2013 00:39:31 -0700
parents ed540dd4cf2b
children a8ee7934a1f8
comparison
equal deleted inserted replaced
259:d9417261366f 260:625f8e4d5fd2
5 CFLAGS=-O2 -std=gnu99 `pkg-config --cflags-only-I $(LIBS)` -Wreturn-type -Werror=return-type 5 CFLAGS=-O2 -std=gnu99 `pkg-config --cflags-only-I $(LIBS)` -Wreturn-type -Werror=return-type
6 endif 6 endif
7 7
8 all : dis trans stateview blastem 8 all : dis trans stateview blastem
9 9
10 blastem : blastem.o 68kinst.o gen_x86.o m68k_to_x86.o x86_backend.o runtime.o mem.o vdp.o render_sdl.o 10 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 render_sdl.o
11 $(CC) -o blastem blastem.o 68kinst.o gen_x86.o m68k_to_x86.o x86_backend.o runtime.o mem.o vdp.o render_sdl.o `pkg-config --libs $(LIBS)` 11 $(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 render_sdl.o `pkg-config --libs $(LIBS)`
12 12
13 dis : dis.o 68kinst.o 13 dis : dis.o 68kinst.o
14 $(CC) -o dis dis.o 68kinst.o 14 $(CC) -o dis dis.o 68kinst.o
15 15
16 zdis : zdis.o z80inst.o 16 zdis : zdis.o z80inst.o