home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************
- E4(tm) Editor Package - COMPILE
- Copyright (C) N.Faulks 1993. All Rights Reserved.
- *****************************************************************
- 6th June 1993
- *****************************************************************
-
- COMPILE is a general pupose compiler control program. Given the
- name of a source file to compile it selects and executes the
- correct compiler for that file.
-
- Its operation is controlled by the file COMPILE.CL, which lists
- what compilers are to be applied to what kinds of files. Entries
- take the form
-
- <file spec>
- <command>
- <command>
- ...
-
- For example to compile .C files using BCC you might use the entry
-
- *.C
- BCC -V $f
-
- $f refers to the full filename given on the command line. Other
- placeholders are available and are listed in the sample
- COMPILE.CL file.
-
- Multiple commands allow you to, for example, Assemble and Link:
-
- *.ASM
- MASM $f;
- LINK $p$n.obj;
-
- The COMPILE.CL file may be placed in the current directory, in a
- directory on listed in E4PATH, on in the editor directory (when
- executed directly by E4).
-
- Refer to the supplied COMPILE.CL for more examples.
-