home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / clipper / chmult.arj / CLIPSING.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-01-04  |  608 b   |  16 lines

  1. @echo off
  2. : clipsing: compiles named prg in current directory for single user;
  3. :           puts obj file in current directory
  4. if .%1==. goto noprg
  5.   \clipper5\bin\clipper %1 /b /isingluse /m /p
  6.   goto end
  7. :noprg
  8. echo Give name of prg file
  9. :end
  10. : NOTE: the operative argument is  -isingluse , which tells clipper to look
  11. :       in the singluse subdirectory for .ch files (in this case multiuse.ch,
  12. :       which director.ch, at the top of your .prg file, will tell it to look
  13. :       for.
  14. :       Since .\singluse\multiuse.ch is a dummy, the definitions from
  15. :       commands.ch will prevail.
  16.