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

  1. @echo off
  2. : clipmult: compiles named prg in current directory for multi-user;
  3. :           puts obj file in subdirectory multiuse
  4. if .%1==. goto noprg
  5.   \clipper5\bin\clipper %1 -imultiuse -b -m -o.\multiuse\%1 -p
  6.   goto end
  7. :noprg
  8. echo Give name of prg file
  9. :end
  10. : NOTE: the operative arguments are  -imultiuse , which tells clipper to look
  11. :       in the multiuse 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. :       and -o.\multiuse\%1  , which tells clipper to put the obj file into
  15. :       the multiuse subdirectory.
  16.