Windows NT 4.0 source code leak
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.

93 lines
2.1 KiB

4 years ago
  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Steve Wood (stevewo) 12-Apr-1989
  12. Revision History:
  13. !ENDIF
  14. #
  15. # The MAJORCOMP and MINORCOMP variables are defined
  16. # so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
  17. # cross compiling to provide unique filenames in a flat namespace.
  18. #
  19. MAJORCOMP=mcd32
  20. MINORCOMP=mcdclient
  21. #
  22. # The TARGETNAME variable is defined by the developer. It is the name of
  23. # the target (component) that is being built by this makefile. It
  24. # should NOT include any path or file extension information.
  25. #
  26. TARGETNAME=mcd32
  27. TARGETPATH=$(BASEDIR)\public\sdk\lib
  28. TARGETTYPE=DYNLINK
  29. # Make sure the component libs are built first
  30. SYNCHRONIZE_DRAIN = 1
  31. TARGETLIBS= \
  32. $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
  33. $(BASEDIR)\public\sdk\lib\*\advapi32.lib \
  34. $(BASEDIR)\public\sdk\lib\*\gdi32p.lib \
  35. $(BASEDIR)\public\sdk\lib\*\glu32.lib \
  36. $(BASEDIR)\public\sdk\lib\*\dciman32.lib \
  37. $(BASEDIR)\public\sdk\lib\*\user32.lib
  38. #LINKLIBS= \
  39. # $(BASEDIR)\public\sdk\lib\*\mcd.lib
  40. DLLBASE=@$(BASEDIR)\PUBLIC\SDK\LIB\coffbase.txt,_CFREE
  41. DLLENTRY=McdDllInitialize
  42. #
  43. # The INCLUDES variable specifies any include paths that are specific to
  44. # this source directory. Separate multiple directory paths with single
  45. # semicolons. Relative path specifications are okay.
  46. #
  47. INCLUDES = ..\inc
  48. #
  49. # Turn off direct imporation for GDI and OpenGL APIs
  50. #
  51. # _CLIENTSIDE_ is defined for client implementaions (WinNT and Win95)
  52. #
  53. C_DEFINES=$(C_DEFINES) -D"WIN32"
  54. USE_CRTDLL=1
  55. !IFNDEF MSC_WARNING_LEVEL
  56. MSC_WARNING_LEVEL = -W3
  57. !ENDIF
  58. MSC_WARNING_LEVEL = $(MSC_WARNING_LEVEL) -WX
  59. #NTPROFILEINPUT=yes
  60. SOURCES=debug.c \
  61. dllinit.c \
  62. mcd.c \
  63. mcd.rc
  64. #PRECOMPILED_INCLUDE = precomp.h
  65. #PRECOMPILED_PCH = precomp.pch
  66. #PRECOMPILED_OBJ = precomp.obj