home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
VSCPPv8.zip
/
VACPP
/
IBMCPP
/
samples
/
VISBUILD
/
DOODLE
/
BUILD.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-05-22
|
562b
|
33 lines
/*REXX*/
libName = "darea"
progName = "DOODLE"
/* build the lib */
cd ".\"libName
nmake "/a /f" libName".mak"
bldrc=rc
cd '..'
SAY 'LIB Build completed with rc='bldrc
if bldrc=0 then do
/* setup the include and library paths to pickup the DLL */
set "INCLUDE=.\"libName";%INCLUDE%"
set "LIB=.\"libName";%LIB%"
/* build with the makefile generated by the Visual Builder */
nmake "/a /f" progName".MAK"
SAY 'Build completed with rc='rc
call Done(rc);
end
else call Done(bldrc)
Done:
arg exitRc
exit(exitRc)