wok annotate linld/stuff/src/!COMPILE.BAT @ rev 25096
created recipe for wordgrinder
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jun 18 15:13:12 2022 +0100 (2022-06-18) |
parents | bc4b94310a29 |
children |
rev | line source |
---|---|
pascal@20458 | 1 path ..\BC31;..;%PATH% |
pascal@19515 | 2 call !clean.bat |
pascal@19538 | 3 tasm /h > helptasm.log |
pascal@19538 | 4 bcc > helpbcc.log |
pascal@19538 | 5 tlink > helptlink.log |
pascal@24019 | 6 bcc @bccopt.opt -S -mt *.cpp > cpp.log |
pascal@20458 | 7 ren LINLD.ASM LINLD.ASO |
pascal@20458 | 8 ren LOAD.ASM LOAD.ASO |
pascal@20458 | 9 ren HIMEM.ASM HIMEM.ASO |
pascal@23864 | 10 ren ISO9660.ASM ISO9660.ASO |
pascal@20459 | 11 mawk -f pipehole.awk LINLD.ASO > LINLD.ASM |
pascal@20459 | 12 mawk -f pipehole.awk LOAD.ASO > LOAD.ASM |
pascal@20459 | 13 mawk -f pipehole.awk HIMEM.ASO > HIMEM.ASM |
pascal@23864 | 14 mawk -f pipehole.awk ISO9660.ASO > ISO9660.ASM |
pascal@24019 | 15 mawk "{ if (/ptional/) hide=1; if (!hide) { sub(\"//\",\";\");sub(\"#define \",\"\");print $1 \"\t=\t1\t\t;\" $0} }" COMMON.H > COMMON.INC |
pascal@24019 | 16 tasm /la /m *.asm > asm.log |
pascal@19515 | 17 tlink /m /s /t @link.cmd > lnk.log |