diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-01-04 20:59:43 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-01-04 20:59:43 +0200 |
commit | 4eee688d1ff5059db3d40af26df188b90368589c (patch) | |
tree | ec41262bc000d83e3db63d3c8d812bcccaa29b63 /vms/gawk_verb.com | |
parent | e7214165a06bc1f4d9c6bdffc6b2b060beb6afee (diff) | |
download | egawk-4eee688d1ff5059db3d40af26df188b90368589c.tar.gz egawk-4eee688d1ff5059db3d40af26df188b90368589c.tar.bz2 egawk-4eee688d1ff5059db3d40af26df188b90368589c.zip |
Update copyright years in VMS files, add packaging scripts.
Diffstat (limited to 'vms/gawk_verb.com')
-rw-r--r-- | vms/gawk_verb.com | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/vms/gawk_verb.com b/vms/gawk_verb.com new file mode 100644 index 00000000..b74c49ed --- /dev/null +++ b/vms/gawk_verb.com @@ -0,0 +1,26 @@ +$! gawk_verb.com - build the gawk_verb.cld from the gawk.cld. +$! +$! The CLD file needed to modify a DCL command table is different +$! from the CLD file needed to build the product by specifying an image. +$! +$! So read in the [.vms]gawk.cld and generate a gawk_verb.cld. +$! +$! 23-Dec-2012 - J. Malmberg +$! +$outfile = "sys$disk:[]gawk_verb.cld" +$infile = "[.vms]gawk.cld" +$open/read cld 'infile' +$create 'outfile' +$open/append cldv 'outfile' +$loop: +$read cld/end=loop_end line_in +$if f$locate("image gawk", line_in) .lt. f$length(line_in) +$then +$ write cldv " image gnv$gnu:[bin]gnv$gawk" +$ goto loop +$endif +$write cldv line_in +$goto loop +$loop_end: +$close cldv +$close cld |