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.

45 lines
752 B

  1. # Dual purpose makefile
  2. #
  3. # When called by NT build BUILDMSG will be present
  4. !IF "$(BUILDMSG)" != ""
  5. # so include WinNT master makefile
  6. ! INCLUDE $(NTMAKEENV)\makefile.def
  7. !ELSE
  8. # Quartz Project Makefile
  9. #
  10. # Copyright (c) 1996 - 1997 Microsoft Corporation. All Rights Reserved.
  11. #
  12. # Targets are provided by QUARTZ.MAK
  13. !ifndef QUARTZ
  14. QUARTZ = ..\..\..
  15. !endif
  16. SDK_ROOT = $(QUARTZ)\sdk
  17. TARGET_NAME = vitcdec
  18. # !ifndef QUARTZ_DLL
  19. TARGET_TYPE = DYNLINK
  20. C_DEFINES = $(C_DEFINES) -DFILTER_DLL
  21. LINK_LIBS = $(LINK_LIBS) ..\timecode.lib
  22. # !else
  23. # TARGET_TYPE = LIBRARY
  24. # C_DEFINES = $(C_DEFINES) -DFILTER_LIB
  25. # !endif
  26. TARGET_GOAL = RUNTIME
  27. SRC_FILES = vitcdec.cpp
  28. DEF_FILE = vitcdec.def
  29. !include "$(QUARTZ)\Quartz.mak"
  30. !ENDIF