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
958 B

  1. !ifdef NTMAKEENV
  2. !include $(NTMAKEENV)\makefile.def
  3. !else
  4. # Quartz Project Makefile
  5. #
  6. # Copyright (c) 1994 - 1997 Microsoft Corporation. All Rights Reserved.
  7. #
  8. # Targets are provided by QUARTZ.MAK
  9. SDK_ROOT = $(QUARTZ)\sdk
  10. TARGET_NAME = Image
  11. !ifndef QUARTZ_DLL
  12. TARGET_TYPE = DYNLINK
  13. C_DEFINES = $(C_DEFINES) -DFILTER_DLL -DPERF
  14. !else
  15. TARGET_TYPE = LIBRARY
  16. C_DEFINES = $(C_DEFINES) -DFILTER_LIB
  17. !endif
  18. TARGET_EXT =
  19. TARGET_GOAL = RUNTIME
  20. INC_PATH = ..\vidprop
  21. SRC_FILES = dvideo.cpp \
  22. image.cpp \
  23. window.cpp \
  24. allocate.cpp \
  25. direct.cpp \
  26. hook.cpp \
  27. dcivid.cpp \
  28. ddmm.cpp \
  29. VRMacVis.cpp
  30. RC_FILE = image.rc
  31. DEF_FILE = image.def
  32. DLL_BASE = 0x1c400000
  33. LINK_LIBS = $(QUARTZ)\lib\$(DBG_RTL)\vidprop.lib \
  34. $(SDK_ROOT)\lib\measure.lib \
  35. LINKER_FLAGS = /PDB:none
  36. !include "$(QUARTZ)\Quartz.mak"
  37. !endif # NTMAKEENV