Source code of Windows XP (NT5)
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.

36 lines
620 B

  1. !ifdef NTMAKEENV
  2. !INCLUDE $(NTMAKEENV)\makefile.def
  3. !ELSE
  4. # Quartz Project Makefile
  5. #
  6. # Copyright (c) 1996 - 1997 Microsoft Corporation. All Rights Reserved.
  7. #
  8. # Targets are provided by QUARTZ.MAK
  9. !ifndef QUARTZ
  10. QUARTZ = ..\..\..
  11. !endif
  12. SDK_ROOT = $(QUARTZ)\sdk
  13. TARGET_NAME = tcdec
  14. # !ifndef QUARTZ_DLL
  15. TARGET_TYPE = DYNLINK
  16. C_DEFINES = $(C_DEFINES) -DFILTER_DLL
  17. LINK_LIBS = $(LINK_LIBS) ..\timecode.lib
  18. # !else
  19. # TARGET_TYPE = LIBRARY
  20. # C_DEFINES = $(C_DEFINES) -DFILTER_LIB
  21. # !endif
  22. TARGET_GOAL = RUNTIME
  23. SRC_FILES = tcdec.cpp
  24. DEF_FILE = tcdec.def
  25. !include "$(QUARTZ)\Quartz.mak"
  26. !ENDIF