home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / DATABASE / STOCK / CSETPP / BUILD.CMD < prev    next >
OS/2 REXX Batch file  |  1995-06-06  |  1KB  |  38 lines

  1. /*REXX*/
  2.  
  3. /*----------------------------------------------------------------------*/
  4. /* DISCLAIMER OF WARRANTIES:                                            */
  5. /*  The following enclosed code is sample code created by IBM           */
  6. /*  Corporation.  This sample code is not part of any standard IBM      */
  7. /*  product and is provided to you solely for the purpose of assisting  */
  8. /*  you in the development of your applications.  The code is provided  */
  9. /*  "AS IS", without warranty of any kind.  IBM shall not be liable     */
  10. /*  for any damages arising out of your use of the sample code, even    */
  11. /*  if they have been advised of the possibility of such damages.       */
  12. /*----------------------------------------------------------------------*/
  13.  
  14. /* Get the path of the VisualAge C++ installation */
  15. env='OS2ENVIRONMENT';               /* Default target directory */
  16. BasePath = VALUE('CPPWORK',,env);  /* on CPPWORK variable dir   */
  17. if BasePath="" then call Abort("Error: CPPWORK environment variable not set.");
  18.  
  19. /* Get project path name. CHANGE THIS FOR YOUR OWN PROJECT! */
  20. PrjName = "DAX_C!!_"
  21. PrjPath = '"'BasePath'\SAMPLES\PROJECTS\DATABASE\'PrjName'"'
  22.  
  23. /* Call IWFBUILD utility */
  24. iwfbuild '/Project 'PrjPath' /NoPrompt'
  25. SAY 'Build completed with rc='rc
  26. call Done(rc);
  27.  
  28. Abort:
  29. parse arg abortMessage
  30. SAY abortMessage
  31. call Done(100)
  32.  
  33. Done:
  34. arg exitRc
  35. exit(exitRc)
  36.  
  37.  
  38.