home *** CD-ROM | disk | FTP | other *** search
/ PC Loisirs 18 / cd.iso / sharewar / mikm202 / source / drvnosnd / makefile.wc next >
Encoding:
Makefile  |  1995-09-18  |  501 b   |  22 lines

  1. ##########################
  2. ## User settable macros ##
  3. ##########################
  4.  
  5. Compiler                = wcc386
  6. Compiler_Options        = /ox /j /I=..\include
  7. Linker_options          = 
  8. System                  = dos4g
  9. Lib_file                = nosnddev.lib
  10. Object_files            = nosnddev.obj
  11.  
  12. ####################
  13. ## Makefile rules ##
  14. ####################
  15.  
  16. $(Lib_file): $(Object_files)
  17.          *wlib $(Lib_file) $(Object_files)
  18.  
  19. .c.obj:
  20.     *$(Compiler) $(Compiler_Options) $<
  21.  
  22.