comparison Makefile @ 820:cf6149b7c6e5

Implement a tiny bit of CPM BDOS and add a corresponding Z80 core driver so that simple CPM programs like ZEXDOC/ZEXALL can be run against my Z80 core
author Michael Pavone <pavone@retrodev.com>
date Wed, 29 Jul 2015 00:05:21 -0700
parents 3eced113081c
children 3b8267fd1687
comparison
equal deleted inserted replaced
819:ab017fb09e77 820:cf6149b7c6e5
162 $(FIXUP) ./$@ 162 $(FIXUP) ./$@
163 163
164 vgmplay$(EXE) : vgmplay.o render_sdl.o $(CONFIGOBJS) $(AUDIOOBJS) 164 vgmplay$(EXE) : vgmplay.o render_sdl.o $(CONFIGOBJS) $(AUDIOOBJS)
165 $(CC) -o $@ $^ $(LDFLAGS) 165 $(CC) -o $@ $^ $(LDFLAGS)
166 $(FIXUP) ./$@ 166 $(FIXUP) ./$@
167
168 blastcpm : blastcpm.o util.o $(Z80OBJS) $(TRANSOBJS)
169 $(CC) -o $@ $^
167 170
168 test : test.o vdp.o 171 test : test.o vdp.o
169 $(CC) -o test test.o vdp.o 172 $(CC) -o test test.o vdp.o
170 173
171 testgst : testgst.o gst.o 174 testgst : testgst.o gst.o