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.

47 lines
1008 B

  1. #############################################################################
  2. #
  3. # Microsoft Confidential
  4. # Copyright (C) Microsoft Corporation 1992
  5. # All Rights Reserved.
  6. #
  7. # Makefile for LIB3
  8. #
  9. #############################################################################
  10. ROOT = ..\..\..\..\..
  11. SRCDIR = ..
  12. IS_32 = TRUE
  13. WANT_32 = TRUE
  14. WANT_C932 = TRUE
  15. BUILD_COFF = TRUE
  16. IS_PRIVATE = TRUE
  17. IS_SDK = TRUE
  18. IS_DDK = TRUE
  19. USEPCH = TRUE
  20. DEPENDNAME = ..\depend.mk
  21. MYLIBNAME = LIB3.LIB
  22. LBFLAGS = /name:$(MYLIBNAME) $(LBFLAGS) /out:$(MYLIBNAME)
  23. PROPBINS= $(MYLIBNAME)
  24. TARGETS = $(MYLIBNAME)
  25. DEFCLIBS=y
  26. LIBOBJS = lib3.obj misc.obj debug.obj
  27. L32DEF = ..\LIB3.def
  28. L32LIBS = kernel32.lib user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib libcmt.lib
  29. !include ..\..\..\common.MK
  30. INCLUDE = $(SRCDIR)\..\..\INC;$(INCLUDE)
  31. $(MYLIBNAME): $(LIBOBJS)
  32. if exist $(MYLIBNAME) del $(MYLIBNAME)
  33. $(LB) $(LBFLAGS) @<<$(@B).lbk
  34. $(LIBOBJS)
  35. <<$(KEEPFLAG)