home *** CD-ROM | disk | FTP | other *** search
/ PC Loisirs 18 / cd.iso / sharewar / mikm202 / docs / compile_.doc next >
Encoding:
Text File  |  1995-09-18  |  1.1 KB  |  48 lines

  1. watcom v10.0 compilation notes
  2. ==============================
  3.  
  4. IMPORTANT:      
  5.         
  6.         - When compiling mikmod using watcom, always make sure you
  7.           use the /j flag to force chars to be signed by default.
  8.  
  9.  
  10. How to compile mikmod using WATCOM v10.0 & PMODE 116:
  11. =====================================================
  12.  
  13. compile the gus driver lib:
  14. (you have to have the gusdk221 for this, and you prolly have to change
  15. some paths in makefile.wc)
  16.         
  17.         cd source\drvgus
  18.         wmake -f makefile.wc
  19.  
  20.  
  21. compile the nosound driver:
  22.  
  23.         cd source\drvnosnd
  24.         wmake -f makefile.wc
  25.  
  26.  
  27. compile the sb driver lib, and the 32 bits mixing routines (the compiler
  28. gives some warnings about the latter, but you can safely ignore them):
  29.  
  30.         cd source\drvsb
  31.         wmake -f makefile.wc
  32.         cd source\virtch32
  33.         wmake -f makefile.wc
  34.  
  35.  
  36. compile the loader lib:
  37.  
  38.         cd source\loaders
  39.         wmake -f makefile.wc
  40.  
  41.  
  42. and finally compile mikmod itself:
  43. (this makefile needs pmode116 or higher to be installed in your watcom 
  44. directory)
  45.  
  46.         cd source
  47.         wmake -f makefile.wc
  48.