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

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