home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / VISBUILD / OASEARCH / BUILD.CMD next >
OS/2 REXX Batch file  |  1995-05-18  |  218b  |  15 lines

  1. /*REXX*/
  2.  
  3. progName = "OAMAIN"
  4.  
  5. /* build with the makefile generated by the Visual Builder */
  6. nmake "/a /f" progName".MAK"
  7. SAY 'Build completed with rc='rc
  8. call Done(rc);
  9.  
  10. Done:
  11. arg exitRc
  12. exit(exitRc)
  13.  
  14.  
  15.