File: makedjg.cmd

package info (click to toggle)
regina 3.3-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,944 kB
  • ctags: 7,235
  • sloc: ansic: 50,555; sh: 2,727; lex: 2,298; yacc: 1,498; makefile: 1,019; cpp: 117
file content (29 lines) | stat: -rw-r--r-- 635 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**/
Parse arg ver .
If ver = '' Then
 Do
    Say 'Must supply version: eg 20'
    Exit
 End
SRC = Translate(Value('REGINA_SRCDIR',,'OS2ENVIRONMENT'),'\','/')
'cd djg'
'mkdir dist'
'cd dist'
'copy ..\rexx.exe'
'copy ..\rxstack.exe'
'copy ..\rxqueue.exe'
'copy ..\libregin.a'
'copy' SRC || '\COPYING-LIB'
'copy' SRC || '\rexxsaa.h'
'copy' SRC || '\README.3?'
'copy' SRC || '\BUGS'
'copy' SRC || '\README_SAFE'
'copy' SRC || '\README.DJG README'
'copy' SRC || '\file_id.diz.djg file_id.diz'
'mkdir demo'
'copy' SRC || '\demo\*.rexx demo\*.rex'
'mkdir nls'
'copy ..\*.mtb nls'
'del rex??djg.zip'
'zip -r rex' || ver || 'djg *'
'cd ..\..'