home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
VSCPPv8.zip
/
VACPP
/
IBMCPP
/
samples
/
DATABASE
/
CAR
/
CARBRWS
/
BUILD.CMD
next >
Wrap
OS/2 REXX Batch file
|
1995-06-06
|
481b
|
27 lines
/*REXX*/
/* build the carv.dll */
call '..\daxsamp\build.cmd'
SAY 'Build completed with rc='result
if result=0 then do
/* setup the include and library paths to pickup CARV */
set "INCLUDE=..\daxsamp;%INCLUDE%"
set "LIB=..\daxsamp;%LIB%"
/* build with the makefile generated by the Visual Builder */
nmake "/a /f CARBRWS.MAK"
SAY 'Build completed with rc='rc
call Done(rc);
end
else call Done(result)
Done:
arg exitRc
exit(exitRc)