83 lines
1.9 KiB
PHP
83 lines
1.9 KiB
PHP
|
# This file contains everything that's common between all AMovie directories.
|
||
|
|
||
|
SOURCES_USED=$(ROOT)\common.inc
|
||
|
|
||
|
SDK_ROOT=$(BASEDIR)\public\sdk\amovie
|
||
|
|
||
|
UMTYPE=windows
|
||
|
|
||
|
# Use NT4/Win95 base API's with IE4 addon support.
|
||
|
|
||
|
WIN32_WINNT_VERSION=0x0400
|
||
|
WIN32_WIN95_VERSION=0x0400
|
||
|
|
||
|
WIN32_IE_VERSION=0x0400
|
||
|
|
||
|
NOT_LEAN_AND_MEAN=1
|
||
|
|
||
|
# Runs on NT4/Win95 or better
|
||
|
|
||
|
SUBSYSTEM_VERSION=4.00
|
||
|
|
||
|
!if "$(BUILD_PRODUCT)" != "NT"
|
||
|
C_DEFINES=$(C_DEFINES) -DSTRICT -DWINVER=0x0400 -DNT_BUILD -DDIRECTDRAW_VERSION=0x0300 -DDIRECTSOUND_VERSION=0x0300 -DFINAL=1 -DOFFICIAL=1
|
||
|
!else
|
||
|
C_DEFINES=$(C_DEFINES) -DSTRICT -DWINVER=0x0500 -DNT_BUILD -DDIRECTDRAW_VERSION=0x0300 -DDIRECTSOUND_VERSION=0x0700 -DFINAL=1 -DOFFICIAL=1
|
||
|
!endif
|
||
|
|
||
|
!if !$(FREEBUILD)
|
||
|
C_DEFINES=$(C_DEFINES) -DDEBUG
|
||
|
LINKER_NOICF = 1 # ICF is s-l-o-w
|
||
|
!endif
|
||
|
|
||
|
INCLUDES= \
|
||
|
$(SDK_ROOT)\inc; \
|
||
|
$(ROOT)\h;
|
||
|
|
||
|
|
||
|
!if exist( "$(ROOT)\qbuild.ver" )
|
||
|
C_DEFINES=$(C_DEFINES) -DQBUILD_VER
|
||
|
INCLUDES = $(INCLUDES)$(ROOT);
|
||
|
!endif
|
||
|
|
||
|
MSC_WARNING_LEVEL=/W3
|
||
|
|
||
|
# unfortunately sources files define PRECOMPILED_INCLUDE after this
|
||
|
# file is preprocessed, and there doesn't appear to be a way to delay
|
||
|
# its evaluation
|
||
|
!ifndef PRECOMPILED_INCLUDE
|
||
|
!ifndef DISABLE_PCH
|
||
|
USER_C_FLAGS=/Yustreams.h /Fp$(SDK_ROOT)\lib$(BUILD_ALT_DIR)\$(TARGET_DIRECTORY)\streams.pch $(USER_C_FLAGS)
|
||
|
!endif
|
||
|
!endif
|
||
|
|
||
|
USE_MSVCRT=1
|
||
|
|
||
|
QUARTZ_LIB_DIR = $(ROOT)\lib$(BUILD_ALT_DIR)\$(TARGET_DIRECTORY)
|
||
|
|
||
|
!ifdef PERF
|
||
|
C_DEFINES=$(C_DEFINES) -DPERF
|
||
|
QUARTZ_PERF_LIB=$(QUARTZ_LIB_DIR)\measure.lib
|
||
|
!endif
|
||
|
|
||
|
# allow mixing debug/retail strmbase.lib in our builds only. the NT
|
||
|
# tree pulls it from nt\public\sdk\lib
|
||
|
#STRMBASE_LIB=$(SDK_ROOT)\lib$(BUILD_ALT_DIR)\$(TARGET_DIRECTORY)\strmbase.lib
|
||
|
|
||
|
!if "$(BUILD_ALT_DIR)" == "d"
|
||
|
STRMBASE_LIB=$(SDK_LIB_PATH)\strmbasd.lib
|
||
|
!else
|
||
|
STRMBASE_LIB=$(SDK_LIB_PATH)\strmbase.lib
|
||
|
!endif
|
||
|
|
||
|
!if "$(BUILD_PRODUCT)" != "NT"
|
||
|
!if !$(FREEBUILD)
|
||
|
DEBUG_CRTS=1
|
||
|
!endif
|
||
|
!else
|
||
|
!ifndef NEVER_UNICODE
|
||
|
C_DEFINES=-DUNICODE -D_UNICODE $(C_DEFINES)
|
||
|
WIN32_WINNT_VERSION=0x0500
|
||
|
!endif
|
||
|
!endif
|