4make

 

Syntax:  4make [options] target_name

 

4make is used to compile a 4gl program on Unix only. 4make can be used to compile a single 4GL file to a P-Code executable in the form:

 

4make myfile.4gl

 

4make can also be used to compile a program comprising multiple sources, based on a definition within a .def file.

 

4make program_name

 

where 'program_name' refers to a TARGET declaration in a .def file. For example:

 

TARGET=myprogram

SOURCES=file1.4gl

     file2.4gl

FORMS=form1.per

     form2.per