home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / DATABASE / CAR / CAREDIT / BUILD.CMD next >
OS/2 REXX Batch file  |  1995-06-06  |  481b  |  27 lines

  1. /*REXX*/
  2.  
  3. /* build the carv.dll */
  4. call '..\daxsamp\build.cmd'
  5.  
  6. SAY 'Build completed with rc='result
  7.  
  8. if result=0 then do
  9.  
  10.   /* setup the include and library paths to pickup CARV */
  11.   set "INCLUDE=..\daxsamp;%INCLUDE%"
  12.   set "LIB=..\daxsamp;%LIB%"
  13.   /* build with the makefile generated by the Visual Builder */
  14.   nmake "/a /f CAREDIT.MAK"
  15.   SAY 'Build completed with rc='rc
  16.   call Done(rc);
  17.  
  18. end
  19. else call Done(result)
  20.  
  21.  
  22. Done:
  23. arg exitRc
  24. exit(exitRc)
  25.  
  26.  
  27.