Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.8 KiB

  1. #=------------------------------------------------------------------------=
  2. # Makefile [Framework]
  3. #=------------------------------------------------------------------------=
  4. # Copyright 1995-1996 Microsoft Corporation. All Rights Reserved.
  5. #
  6. # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  7. # ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  8. # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  9. # PARTICULAR PURPOSE.
  10. #=--------------------------------------------------------------------------=
  11. #
  12. # builds a Library for the Framework
  13. #
  14. !if ("$(nodebug)"=="")
  15. Proj=CtlFwD32
  16. !else
  17. Proj=CtlFwR32
  18. !endif
  19. # Commands to be added to the compile line... in this case to locate headers
  20. cDefines= -I. -I..\Include -Gd -Gs -W3 -Oi -Tp
  21. # pull in the master SDK makefile that defines all of the macros
  22. # and all of the build rules
  23. !include <inetsdk.mak>
  24. # itemize all of the required object files
  25. OBJS= $(ObjDir)\AutoObj.Obj \
  26. $(ObjDir)\ClassF.Obj \
  27. $(ObjDir)\CtlEmbed.Obj \
  28. $(ObjDir)\CtlHelp.Obj \
  29. $(ObjDir)\CtlMisc.Obj \
  30. $(ObjDir)\CtlOCX96.Obj \
  31. $(ObjDir)\CtlPsst.Obj \
  32. $(ObjDir)\CtlView.Obj \
  33. $(ObjDir)\CtlWrap.Obj \
  34. $(ObjDir)\Debug.Obj \
  35. $(ObjDir)\Globals.Obj \
  36. $(ObjDir)\Internet.Obj \
  37. $(ObjDir)\IPServer.Obj \
  38. $(ObjDir)\PropPage.Obj \
  39. $(ObjDir)\StdEnum.Obj \
  40. $(ObjDir)\Unknown.Obj \
  41. $(ObjDir)\ExtObj.Obj \
  42. $(ObjDir)\Util.Obj
  43. all: $(ObjDir)\$(Proj).Lib
  44. # make the Library, and copy it into the correct directory
  45. $(ObjDir)\$(Proj).Lib: $(OBJS)
  46. $(LIBU) $(LIBFLAGS) $** $(LogCmd)
  47. @if not exist ..\Lib md ..\Lib
  48. copy $(ObjDir)\$(Proj).Lib ..\Lib