home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / epmcsamp.zip / EPMCSAMP / SRC / BUILD.CMD next >
OS/2 REXX Batch file  |  1995-05-23  |  223b  |  14 lines

  1. @echo off
  2. setlocal
  3. set include=.;%include%
  4. if .%1 == .debug  goto debug
  5. if .%1 == .Debug  goto debug
  6. if .%1 == .DEBUG  goto debug
  7. set DEBUG=
  8. goto nodebug
  9. :debug
  10. set DEBUG=1
  11. :nodebug
  12. nmake epmcsamp.mak
  13. endlocal
  14.