Browse Source

Build Consistency Improvements

pull/173/head
Wayne Warthen 6 years ago
parent
commit
ad05186769
  1. 1
      Binary/Clean.cmd
  2. 4
      Source/CPM3/Makefile
  3. 2
      Source/ZPM3/Makefile
  4. 1
      Tools/Makefile.inc

1
Binary/Clean.cmd

@ -7,7 +7,6 @@ if exist *.com del *.com
if exist *.img del *.img
if exist *.rom del *.rom
if exist *.pdf del *.pdf
if exist *.log del *.log
if exist *.eeprom del *.eeprom
setlocal & cd Apps && call Clean || exit /b 1 & endlocal

4
Source/CPM3/Makefile

@ -89,12 +89,10 @@ zpmbios3.spr: $(BIOSOBJS)
cpm3.sys: cpm3$(DEFCPM3).sys
cp cpm3$(DEFCPM3).sys cpm3.sys
rm -f /tmp/casefn.cache
gencpm.dat: gen$(DEFCPM3).dat
cp gen$(DEFCPM3).dat gencpm.dat
rm -f /tmp/casefn.cache
cpmldr.sys: loader.bin cpmldr.bin
cat loader.bin cpmldr.bin > $@

2
Source/ZPM3/Makefile

@ -50,9 +50,7 @@ startzpm.com: ../ZCCP/startzpm.com
cp $< $@
cpmldr.com: ../CPM3/cpmldr.com
rm -f /tmp/casefn.cache
cp $< $@
cpmldr.sys: ../CPM3/cpmldr.sys
rm -f /tmp/casefn.cache
cp $< $@

1
Tools/Makefile.inc

@ -116,6 +116,7 @@ all:: $(OBJECTS)
@if [ "$(DEST)" ] ; then for file in $(filter-out $(NOCOPY),$(OBJECTS)) ; do \
mkdir -p $(DEST) ; \
echo copy $$file to $(DEST) ; \
rm -f /tmp/casefn.cache ; \
cp $$($(CASEFN) $$file) $(DEST) ; \
done ; fi
@if [ "$(DOCDEST)" ] ; then for file in $(DOCS) ; do \

Loading…
Cancel
Save