home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Html / Server / Samples / UpCase / makefile next >
Encoding:
Makefile  |  1995-11-14  |  553 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. UpCase.Dll: $(@B).obj $(@B).Lib
  13.   $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:$@ $** $(conlibsdll) $(@B).Exp $(int64lib)
  14.  
  15. UpCase.Lib: $(@B).Def $(@B).Obj
  16.  
  17. .def.lib:
  18.   $(implib) -machine:$(CPU) -nologo -Def:$(@B).Def -Out:$@ $(@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.