home *** CD-ROM | disk | FTP | other *** search
-
- ** Compiling the Source Code **
-
- * To create a new version of XMDM.EXE you will need the following
- source files on disk:
-
- XMDM.C
- CRC.ASM
- CRTLBRK.ASM
- CRTLBRK.H
- BYEXFACE.H
- MODEL.H
-
- The easiest way to create XMDM.EXE is by using the provided
- 'make' file XBBS. To do this simply use the following command
- in your compilers directory:
-
- C>make xbbs
-
- This will compile all modules and link the program to produce
- the executable file XMDM.EXE. Note you must have MASM, MSC, and
- and LINK in the appropriate paths.
-
-
- * Compile XMDM.C using the following command for Microsoft C
-
- MSC XMDM;
-
- * Compile CRC.ASM you will need MASM.EXE to assemble the code.
- this module is pre-compiled for the Small Memory Model and need
- not be changed unless, you change memory model sizes.
-
- MASM CRC;
- MASM CTRLBRK;
-
- * Once both modules are compiled you will need the following object
- modules to link using LINK:
-
- XMDM.OBJ
- CRC.OBJ
- CTRLBRK.OBJ
- BYEXFACE.OBJ (see directory \BYEXFACE)
-
- C>link xmdm+crc+ctrlbrk+..\byexface\byexface.obj;
-
-