File: makevcp.cmd

package info (click to toggle)
regina 2.2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,332 kB
  • ctags: 4,775
  • sloc: ansic: 38,518; sh: 2,552; lex: 1,878; yacc: 1,028; makefile: 771
file content (24 lines) | stat: -rw-r--r-- 521 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**/
Parse arg ver .
If ver = '' Then
 Do
    Say 'Must supply version: eg 20'
    Exit
 End
SRC = Translate(Value('REGINA_SRCDIR',,'OS2ENVIRONMENT'),'\','/')
'cd vcp'
'mkdir dist'
'cd dist'
'copy ..\rexx.exe'
'copy ..\regina*.a'
'copy' SRC || '\COPYING-LIB'
'copy' SRC || '\rexxsaa.h'
'copy' SRC || '\README.2*'
'copy' SRC || '\BUGS'
'copy' SRC || '\README.VCP README'
'copy' SRC || '\file_id.diz.vcp file_id.diz'
'mkdir demo'
'copy' SRC || '\demo\*.rexx demo\*.rex'
'del rex??vcp.zip'
'zip -r rex'ver'vcp *'
'cd ..\..'