home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / opendc12.zip / od124os2.exe / od12osp1.exe / src / shpin / buildme.cmd next >
OS/2 REXX Batch file  |  1997-04-02  |  587b  |  25 lines

  1. @echo off
  2. rem @(#) 1.1 com/src/samples/shpin/buildme.cmd, odplugin, od96os2, odos29712d 2/27/97 15:12:14 [ 3/21/97 17:51:31 ]
  3. rem
  4. rem This command file is to build the sample shell plugin library
  5.  
  6. if "%ODSRC%" == "" goto runenv
  7.  
  8. :build
  9. nmake 2>&1 | tee make.out
  10.  
  11. if "%OS2_SHELL%" == "" goto setshpinenv
  12. echo
  13. echo The shell plugin library iodshpin.dll is built and is located in
  14. echo $(ODSRC)/dll directory. Please copy this dll into the OpenDoc
  15. echo Shell plugin folder.
  16. goto end
  17.  
  18. :runenv
  19. call SampEnv
  20. goto build
  21.  
  22. :setshpinenv
  23. set ODSHELLPLUGINS=%ODSRC%\dll
  24. :end
  25.