home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Html / Server / Samples / ISrvMon / makefile < prev   
Encoding:
Makefile  |  1995-10-04  |  552 b   |  28 lines

  1. TARGETOS=WINNT
  2. APPVER=4.0
  3.  
  4. .SUFFIXES: .def .lib
  5.  
  6. !include <win32.mak>
  7.  
  8. !if defined(clean)
  9. target: clean
  10. !endif
  11.  
  12. ISrvMon.Dll: $(@B).obj $(@B).Exp
  13.   $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:$@ $** $(guilibsdll) $(int64lib)
  14.  
  15. ISrvMon.Exp: $(@B).Def $(@B).Obj
  16.  
  17. .def.Exp:
  18.   $(implib) -machine:$(CPU) -nologo -Def:$(@B).Def -Out:$(@B).Lib $(@B).Obj
  19.  
  20. .c.obj:
  21.   $(cc) $(cdebug) $(cflags) $(cvarsdll) $(@B).c -Fo$@
  22.  
  23. .cpp.obj:
  24.   $(cc) $(cdebug) $(cflags) $(cvarsdll) $(@B).cpp -Fo$@
  25.  
  26. clean:
  27.   del *.Dll *.Obj *.Exp *.Lib
  28.