home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / modem / byepc300.arc / BYEXMDM.ARC / READ.ME < prev    next >
Text File  |  1987-07-28  |  1KB  |  47 lines

  1.  
  2.          **  Compiling the Source Code **
  3.  
  4. * To create a new version of XMDM.EXE you will need the following
  5.   source files on disk:
  6.  
  7.         XMDM.C
  8.         CRC.ASM
  9.         CRTLBRK.ASM
  10.         CRTLBRK.H
  11.         BYEXFACE.H
  12.         MODEL.H
  13.  
  14.   The easiest way to create XMDM.EXE is by using the provided
  15.   'make' file XBBS. To do this simply use the following command
  16.   in your compilers directory:
  17.  
  18.         C>make xbbs
  19.  
  20.   This will compile all modules and link the program to produce
  21.   the executable file XMDM.EXE. Note you must have MASM, MSC, and
  22.   and LINK in the appropriate paths.
  23.  
  24.  
  25. * Compile XMDM.C using the following command for Microsoft C
  26.  
  27.         MSC XMDM;
  28.  
  29. * Compile CRC.ASM you will need MASM.EXE to assemble the code.
  30.   this module is pre-compiled for the Small Memory Model and need
  31.   not be changed unless, you change memory model sizes.
  32.  
  33.         MASM CRC;
  34.         MASM CTRLBRK;
  35.  
  36. * Once both modules are compiled you will need the following object
  37.   modules to link using LINK:
  38.  
  39.         XMDM.OBJ
  40.         CRC.OBJ
  41.         CTRLBRK.OBJ
  42.         BYEXFACE.OBJ        (see directory \BYEXFACE)
  43.  
  44.   C>link xmdm+crc+ctrlbrk+..\byexface\byexface.obj;
  45.  
  46.  
  47.