home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Html / Server / Samples / OleISAPI / makefile < prev    next >
Encoding:
Makefile  |  1995-12-04  |  568 b   |  26 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !MESSAGE Building OleISAPI.dll...
  4. !MESSAGE
  5.  
  6. .SUFFIXES: .def .lib
  7.  
  8. Proj = OleISAPI
  9.  
  10. !include <win32.mak>
  11.  
  12. $(Proj).Dll: $(Proj).Obj $(Proj).Exp
  13.   $(link)  $(dlllflags) -base:0x1C000000 -out:$@ $** $(olelibsdll)
  14.  
  15. # Update the object file if necessary
  16.  
  17. $(Proj).obj: $(Proj).Cpp
  18.     $(cc) $(cflags) $(cvarsdll) $(Proj).Cpp
  19.  
  20. # .Def.Exp:
  21. $(Proj).exp: $(Proj).Def
  22.   $(implib) -machine:$(CPU) -nologo -Def:$(@B).Def -Out:$(@B).Lib $(@B).Obj
  23.  
  24. clean:
  25.   del $(Proj).Dll $(Proj).Obj $(Proj).Exp $(Proj).Lib
  26.