
The command interpreter has been compiled with DJGPP C versions 1.2 and
2.0.

For DJGPP version 1.2, enter the command
        MAKE_DJ1

For DJGPP version 2.0, enter the command
        MAKE_DJ2

To delete all the object files, enter the command
        CLEAN_

To delete the library and the executables, enter the command
        CLEANALL


The MSDOS version of the command interpreter allows the use of UNIX type
file names (i.e not necessarily of type $$$$$$$$.$$$). This is done by
replacing the usual fopen by the function Xfopen in unixfic.c. This will
be done automatically if you include the file "interp.h" in your sources
and compile then with the option -D_MSDOS_VERSION .
The function Xfopen works as follows : when a filename is not accepted by
MSDOS, it will be changed into a filename NNN.UNX, where NNN is an integer.
The correspondance integers-filenames is stored in the file 00000000.000 of
the current directory. So Xfopen will read this table when a file with
incorrect name is opened for reading, and it can be modified if the file
is opened for writing. The directory utils/ contains the program 'ls.c' that
can be used to view the correspondance table in a given directory. It must
be compiled with the files 'unixfic.c' and 'unixfic.h' of the library
sources.
