home *** CD-ROM | disk | FTP | other *** search
- @echo off
- : clipsing: compiles named prg in current directory for single user;
- : puts obj file in current directory
- if .%1==. goto noprg
- \clipper5\bin\clipper %1 /b /isingluse /m /p
- goto end
- :noprg
- echo Give name of prg file
- :end
- : NOTE: the operative argument is -isingluse , which tells clipper to look
- : in the singluse 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.
- : Since .\singluse\multiuse.ch is a dummy, the definitions from
- : commands.ch will prevail.
-