home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Html / Server / Samples / SrchD / makefile < prev    next >
Encoding:
Makefile  |  1995-10-04  |  562 b   |  26 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. SrchD.Dll: Srch.Obj SrchX.Obj SrchD.Exp
  13.   $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:$@ $** $(guilibsdll) $(int64lib)
  14.  
  15. SrchD.Exp: $(@B).Def Srch.Obj SrchX.Obj
  16.   $(implib) -machine:$(CPU) -nologo -Def:$(@B).Def -Out:$(@B).Lib Srch.Obj SrchX.Obj
  17.  
  18. .c.obj:
  19.   $(cc) $(cdebug) $(cflags) $(cvarsdll) $(@B).C -Fo$@
  20.  
  21. .cpp.obj:
  22.   $(cc) $(cdebug) $(cflags) $(cvarsdll) $(@B).Cpp -Fo$@
  23.  
  24. clean:
  25.   del *.Dll *.Obj *.Exp *.Lib
  26.