37 lines
620 B
Makefile
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
|
||
|
|