windows-nt/Source/XPSP1/NT/multimedia/dshow/timecode/tcdec/makefile
2020-09-26 16:20:57 +08:00

37 lines
620 B
Makefile

!ifdef NTMAKEENV
!INCLUDE $(NTMAKEENV)\makefile.def
!ELSE
# Quartz Project Makefile
#
# Copyright (c) 1996 - 1997 Microsoft Corporation. All Rights Reserved.
#
# Targets are provided by QUARTZ.MAK
!ifndef QUARTZ
QUARTZ = ..\..\..
!endif
SDK_ROOT = $(QUARTZ)\sdk
TARGET_NAME = tcdec
# !ifndef QUARTZ_DLL
TARGET_TYPE = DYNLINK
C_DEFINES = $(C_DEFINES) -DFILTER_DLL
LINK_LIBS = $(LINK_LIBS) ..\timecode.lib
# !else
# TARGET_TYPE = LIBRARY
# C_DEFINES = $(C_DEFINES) -DFILTER_LIB
# !endif
TARGET_GOAL = RUNTIME
SRC_FILES = tcdec.cpp
DEF_FILE = tcdec.def
!include "$(QUARTZ)\Quartz.mak"
!ENDIF