mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:33:12 -06:00
The QPM portion of the build has been updated to dynamically combine the current CBIOS with the static QPM CCP and BDOS binaries. This will keep the QPM system image up to date and avoid HBIOS version mismatch warnings.
16 lines
469 B
Makefile
16 lines
469 B
Makefile
SYSFILES = qpm_wbw.sys qpm_una.sys
|
|
BINFILES = qpm_wbw.bin qpm_una.bin
|
|
OBJECTS = loader.bin $(SYSFILES) $(BINFILES)
|
|
OTHERS = *.hex
|
|
TOOLS = ../../Tools
|
|
include $(TOOLS)/Makefile.inc
|
|
|
|
%.sys: %.bin loader.bin
|
|
cat loader.bin $*.bin > $@
|
|
|
|
qpm_una.bin: qcp27.dat qdos27.dat ../CBIOS/cbios_una.bin
|
|
cat qcp27.dat qdos27.dat ../CBIOS/cbios_una.bin > $@
|
|
|
|
qpm_wbw.bin: qcp27.dat qdos27.dat ../CBIOS/cbios_wbw.bin
|
|
cat qcp27.dat qdos27.dat ../CBIOS/cbios_wbw.bin > $@
|