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.
82 lines
1.6 KiB
82 lines
1.6 KiB
!IF 0
|
|
|
|
Copyright (c) 2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sources.
|
|
|
|
Abstract:
|
|
|
|
This file specifies the target component being built and the list of
|
|
sources files needed to build that component. Also specifies optional
|
|
compiler switches and libraries that are unique for the component being
|
|
built.
|
|
|
|
Author:
|
|
|
|
CliffV 11-April-2001
|
|
|
|
|
|
!ENDIF
|
|
|
|
MAJORCOMP=authz
|
|
MINORCOMP=msazxml
|
|
|
|
TARGETNAME=$(MINORCOMP)
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
DLLDEF= $(O)\$(TARGETNAME).def
|
|
DLLENTRY= _DllMainCRTStartup
|
|
|
|
C_DEFINES= $(C_DEFINES) -DUNICODE
|
|
|
|
ATL_VER=30
|
|
USE_STATIC_ATL=1
|
|
# USE_ICECAP4_ICEPICK=1
|
|
|
|
SOURCES= \
|
|
xml.cxx \
|
|
init.cxx \
|
|
util.cxx
|
|
|
|
|
|
INCLUDES= \
|
|
$(SECURITY_INC); \
|
|
$(O) \
|
|
..\$(O) \
|
|
.; \
|
|
|
|
|
|
|
|
# Strict warning, can be used to detect uninitialized vars. Picks up random
|
|
# stuff too
|
|
|
|
COMPILER_WARNINGS=$(COMPILER_WARNINGS) -FI$(SECURITY_INC)\secwarn.h
|
|
MSC_WARNING_LEVEL=/W4
|
|
|
|
PRECOMPILED_INCLUDE=pch.hxx
|
|
PRECOMPILED_OBJ=pch.obj
|
|
PRECOMPILED_PCH=pch.pch
|
|
|
|
|
|
# Use C++ Exception Handling
|
|
# USE_NATIVE_EH=1
|
|
|
|
USE_MSVCRT= 1
|
|
|
|
|
|
TARGETLIBS= \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(DS_LIB_PATH)\alloca.lib \
|
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
|
$(SDK_LIB_PATH)\msxml2.lib \
|
|
$(SECURITY_LIB_PATH)\dsysdbg.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
|
|
|
|
NTTARGETFILES= \
|
|
xml.cxx
|