diff 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
line wrap: on
line diff
--- a/Makefile	Thu Oct 31 01:00:32 2013 -0700
+++ b/Makefile	Mon Jan 06 22:54:05 2014 -0800
@@ -42,13 +42,13 @@
 	$(CC) -o trans trans.o $(M68KOBJS) $(TRANSOBJS)
 
 transz80 : transz80.o $(Z80OBJS) $(TRANSOBJS)
-	$(CC) -o transz80 $(Z80OBJS) $(TRANSOBJS)
+	$(CC) -o transz80 transz80.o $(Z80OBJS) $(TRANSOBJS)
 
 ztestrun : ztestrun.o $(Z80OBJS) $(TRANSOBJS)
-	$(CC) -o ztestrun $(Z80OBJS) $(TRANSOBJS)
+	$(CC) -o ztestrun ztestrun.o $(Z80OBJS) $(TRANSOBJS)
 
 ztestgen : ztestgen.o z80inst.o
-	$(CC) -o ztestgen ztestgen.o z80inst.o
+	$(CC) -ggdb -o ztestgen ztestgen.o z80inst.o
 
 stateview : stateview.o vdp.o render_sdl.o $(CONFIGOBJS) gst.o
 	$(CC) -o stateview stateview.o vdp.o render_sdl.o $(CONFIGOBJS) gst.o $(LDFLAGS)