home *** CD-ROM | disk | FTP | other *** search
- @echo off
- : clipmult: compiles named prg in current directory for multi-user;
- : puts obj file in subdirectory multiuse
- if .%1==. goto noprg
- \clipper5\bin\clipper %1 -imultiuse -b -m -o.\multiuse\%1 -p
- goto end
- :noprg
- echo Give name of prg file
- :end
- : NOTE: the operative arguments are -imultiuse , which tells clipper to look
- : in the multiuse subdirectory for .ch files (in this case multiuse.ch,
- : which director.ch, at the top of your .prg file, will tell it to look
- : for;
- : and -o.\multiuse\%1 , which tells clipper to put the obj file into
- : the multiuse subdirectory.
-