forked from MirrorRepos/RomWBW
- Restructured documentation and started updates (much more to go) - Added test app to test HBIOS banking API.
23 lines
548 B
Makefile
23 lines
548 B
Makefile
OBJECTS = psys.img psystest.img
|
|
TOOLS = ../../Tools
|
|
DEST = ../../Binary
|
|
OTHERS = *.bin *.lst *.img
|
|
NOCOPY = psystest.img
|
|
include $(TOOLS)/Makefile.inc
|
|
|
|
trk0.bin: loader.bin bios.bin boot.dat fill.bin
|
|
cat $+ >$@
|
|
|
|
psys.img: ../Images/hd1k_prefix.dat trk0.bin psys.vol trk0.bin blank.vol
|
|
cat $+ >$@
|
|
|
|
testldr.bin: loader.asm
|
|
$(TASM) -dTESTBIOS $< $@ testldr.lst
|
|
|
|
testfill.bin: fill.asm
|
|
$(TASM) -dTESTBIOS $< $@ testfill.lst
|
|
|
|
|
|
psystest.img: ../Images/hd1k_prefix.dat testldr.bin bios.bin biostest.dat testfill.bin
|
|
cat $+ >$@
|