diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-30 21:52:45 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-30 21:52:45 +0200 |
commit | dad5f25058c4ecf69ebe4543a13281d3f28c69bc (patch) | |
tree | 8febb68d715ea8a08ed0da2955b5b780d6613500 /vms/vax/macro32_exactcase.com | |
parent | cbd2cf7f926f960fab1b5004e42c35515c1c8d9f (diff) | |
download | egawk-dad5f25058c4ecf69ebe4543a13281d3f28c69bc.tar.gz egawk-dad5f25058c4ecf69ebe4543a13281d3f28c69bc.tar.bz2 egawk-dad5f25058c4ecf69ebe4543a13281d3f28c69bc.zip |
Build and test dynamic extensions on VMS. Documented too.
Diffstat (limited to 'vms/vax/macro32_exactcase.com')
-rw-r--r-- | vms/vax/macro32_exactcase.com | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vms/vax/macro32_exactcase.com b/vms/vax/macro32_exactcase.com new file mode 100644 index 00000000..79194e21 --- /dev/null +++ b/vms/vax/macro32_exactcase.com @@ -0,0 +1,16 @@ +$! +$! Patch the Macro32 compiler and optional assemble +$!----------------------------------------------------- +$ patched_macro = "sys$disk:[]macro32_exactcase.exe" +$ if f$search(patched_macro) .eqs. "" +$ then +$ copy sys$system:macro32.exe 'patched_macro' +$ patch @[.vms]macro32_exactcase.patch +$ endif +$! Usage: +$ xfer_file_source = p1 +$ if f$search(p1) .nes. "" +$ then +$ define/user macro32 'patched_macro' +$ macro/lis 'p1' +$ endif |