mirror of https://github.com/tongzx/nt5src
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.
57 lines
959 B
57 lines
959 B
!if 0
|
|
Copyright (c) 1997 Microsoft Corporation. All Rights Reserved.
|
|
!endif
|
|
|
|
!ifdef NTMAKEENV
|
|
|
|
!INCLUDE $(NTMAKEENV)\makefile.def
|
|
|
|
!ELSE
|
|
#
|
|
# Quartz Project Makefile
|
|
#
|
|
# Targets are provided by QUARTZ.MAK
|
|
#
|
|
|
|
DISABLE_PCH = 1
|
|
|
|
!ifndef QUARTZ
|
|
QUARTZ=..\..
|
|
!endif
|
|
|
|
#NO_QUARTZ_LIBS = 1
|
|
|
|
C_DEFINES = -D_ATL_MIN_CRT -D_WINDLL
|
|
|
|
!if (defined(NODEBUG) || defined(RETAIL)) && "$(CPU)" == "i386"
|
|
USE_LIBCMT_LIB = 1
|
|
!endif
|
|
|
|
TARGET_NAME = ddstream
|
|
TARGET_TYPE = LIBRARY
|
|
TARGET_GOAL = RUNTIME
|
|
|
|
INC_PATH = ..\idl;..\strmobjs
|
|
|
|
SRC_FILES = mtenum.cpp \
|
|
sample.cpp \
|
|
ddsample.cpp\
|
|
stream.cpp \
|
|
pump.cpp \
|
|
ddstrm.cpp \
|
|
util.cpp \
|
|
bytestrm.cpp \
|
|
austrm.cpp \
|
|
medsampl.cpp \
|
|
mss.cpp
|
|
|
|
#DEF_FILE = amstream.def
|
|
|
|
|
|
# PCH_HEADER = mpeghdr.h - ???
|
|
# PCH_NAME = _mpeghdr - ???
|
|
|
|
|
|
!include "$(QUARTZ)\Quartz.mak"
|
|
|
|
!ENDIF # NTMAKEENV
|