comparison Makefile @ 465:dc322bc77ea2

Fix stateview. Update "all" target in Makefile.
author Mike Pavone <pavone@retrodev.com>
date Tue, 10 Sep 2013 21:07:13 -0700
parents b7c3b2d22858
children bc9e0829ffc7
comparison
equal deleted inserted replaced
464:226ed16b1fb6 465:dc322bc77ea2
14 TRANSOBJS=gen_x86.o x86_backend.o mem.o 14 TRANSOBJS=gen_x86.o x86_backend.o mem.o
15 M68KOBJS=68kinst.o m68k_to_x86.o runtime.o 15 M68KOBJS=68kinst.o m68k_to_x86.o runtime.o
16 Z80OBJS=z80inst.o z80_to_x86.o zruntime.o 16 Z80OBJS=z80inst.o z80_to_x86.o zruntime.o
17 AUDIOOBJS=ym2612.o psg.o wave.o 17 AUDIOOBJS=ym2612.o psg.o wave.o
18 18
19 all : dis trans stateview blastem 19 all : dis zdis stateview vgmplay blastem
20 20
21 blastem : blastem.o vdp.o render_sdl.o io.o config.o tern.o gst.o $(M68KOBJS) $(Z80OBJS) $(TRANSOBJS) $(AUDIOOBJS) 21 blastem : blastem.o vdp.o render_sdl.o io.o config.o tern.o gst.o $(M68KOBJS) $(Z80OBJS) $(TRANSOBJS) $(AUDIOOBJS)
22 $(CC) -ggdb -o blastem blastem.o vdp.o render_sdl.o io.o config.o tern.o gst.o $(M68KOBJS) $(Z80OBJS) $(TRANSOBJS) $(AUDIOOBJS) $(LDFLAGS) 22 $(CC) -ggdb -o blastem blastem.o vdp.o render_sdl.o io.o config.o tern.o gst.o $(M68KOBJS) $(Z80OBJS) $(TRANSOBJS) $(AUDIOOBJS) $(LDFLAGS)
23 23
24 dis : dis.o 68kinst.o 24 dis : dis.o 68kinst.o
40 $(CC) -o ztestrun $(Z80OBJS) $(TRANSOBJS) 40 $(CC) -o ztestrun $(Z80OBJS) $(TRANSOBJS)
41 41
42 ztestgen : ztestgen.o z80inst.o 42 ztestgen : ztestgen.o z80inst.o
43 $(CC) -o ztestgen ztestgen.o z80inst.o 43 $(CC) -o ztestgen ztestgen.o z80inst.o
44 44
45 stateview : stateview.o vdp.o render_sdl.o 45 stateview : stateview.o vdp.o render_sdl.o config.o tern.o gst.o
46 $(CC) -o stateview stateview.o vdp.o render_sdl.o `pkg-config --libs $(LIBS)` 46 $(CC) -o stateview stateview.o vdp.o render_sdl.o config.o tern.o gst.o `pkg-config --libs $(LIBS)`
47 47
48 vgmplay : vgmplay.o render_sdl.o $(AUDIOOBJS) 48 vgmplay : vgmplay.o render_sdl.o $(AUDIOOBJS)
49 $(CC) -o vgmplay vgmplay.o render_sdl.o $(AUDIOOBJS) `pkg-config --libs $(LIBS)` 49 $(CC) -o vgmplay vgmplay.o render_sdl.o $(AUDIOOBJS) `pkg-config --libs $(LIBS)`
50 50
51 testgst : testgst.o gst.o 51 testgst : testgst.o gst.o