comparison Makefile @ 505:b7b7a1cab44a

The local clone on my laptop got messed up and some changes had not been pushed. This commit represents the status of the working copy from that clone. It unfortunately contains some changes that I did not intend to commit yet, but this seems like the best option at the moment.
author Michael Pavone <pavone@retrodev.com>
date Mon, 06 Jan 2014 22:54:05 -0800
parents 39cad98d2789
children 1495179d6737
comparison
equal deleted inserted replaced
504:7b0df1aaf384 505:b7b7a1cab44a
40 40
41 trans : trans.o $(M68KOBJS) $(TRANSOBJS) 41 trans : trans.o $(M68KOBJS) $(TRANSOBJS)
42 $(CC) -o trans trans.o $(M68KOBJS) $(TRANSOBJS) 42 $(CC) -o trans trans.o $(M68KOBJS) $(TRANSOBJS)
43 43
44 transz80 : transz80.o $(Z80OBJS) $(TRANSOBJS) 44 transz80 : transz80.o $(Z80OBJS) $(TRANSOBJS)
45 $(CC) -o transz80 $(Z80OBJS) $(TRANSOBJS) 45 $(CC) -o transz80 transz80.o $(Z80OBJS) $(TRANSOBJS)
46 46
47 ztestrun : ztestrun.o $(Z80OBJS) $(TRANSOBJS) 47 ztestrun : ztestrun.o $(Z80OBJS) $(TRANSOBJS)
48 $(CC) -o ztestrun $(Z80OBJS) $(TRANSOBJS) 48 $(CC) -o ztestrun ztestrun.o $(Z80OBJS) $(TRANSOBJS)
49 49
50 ztestgen : ztestgen.o z80inst.o 50 ztestgen : ztestgen.o z80inst.o
51 $(CC) -o ztestgen ztestgen.o z80inst.o 51 $(CC) -ggdb -o ztestgen ztestgen.o z80inst.o
52 52
53 stateview : stateview.o vdp.o render_sdl.o $(CONFIGOBJS) gst.o 53 stateview : stateview.o vdp.o render_sdl.o $(CONFIGOBJS) gst.o
54 $(CC) -o stateview stateview.o vdp.o render_sdl.o $(CONFIGOBJS) gst.o $(LDFLAGS) 54 $(CC) -o stateview stateview.o vdp.o render_sdl.o $(CONFIGOBJS) gst.o $(LDFLAGS)
55 55
56 vgmplay : vgmplay.o render_sdl.o $(CONFIGOBJS) $(AUDIOOBJS) 56 vgmplay : vgmplay.o render_sdl.o $(CONFIGOBJS) $(AUDIOOBJS)