mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
559 B
20 lines
559 B
SYSFILES = zsys_wbw.sys zsys_una.sys
|
|
OBJECTS = $(SYSFILES)
|
|
OTHERS = zsdos.rel zsdos.err loader.bin
|
|
TOOLS = ../../Tools
|
|
CCP = ../ZCPR-DJ/zcpr.bin
|
|
|
|
include $(TOOLS)/Makefile.inc
|
|
|
|
zsdos.rel: zsdos.z80
|
|
$(ZXCC) $(CPM)/ZMAC -$< -/P
|
|
|
|
zsdos.bin: zsdos.rel
|
|
$(ZXCC) $(CPM)/LINK -$@=$<[LD800]
|
|
|
|
zsys_wbw.sys: loader.bin $(CCP) zsdos.bin ../CBIOS/cbios_wbw.bin
|
|
cat loader.bin $(CCP) zsdos.bin ../CBIOS/cbios_wbw.bin > $@
|
|
|
|
zsys_una.sys: loader.bin $(CCP) zsdos.bin ../CBIOS/cbios_una.bin
|
|
cat loader.bin $(CCP) zsdos.bin ../CBIOS/cbios_una.bin > $@
|
|
|
|
|