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.
72 lines
1.6 KiB
72 lines
1.6 KiB
# Active Directory Display Specifier Upgrade Tool
|
|
#
|
|
# Copyright (c) 2001 Microsoft Corporation
|
|
#
|
|
# 1 Mar 2001 sburns
|
|
|
|
|
|
|
|
TARGETNAME=dspecup
|
|
TARGETPATH=obj
|
|
TARGETTYPE=LIBRARY
|
|
UMTYPE=windows
|
|
|
|
# always do logging in both fre and chk builds
|
|
|
|
!MESSAGE defining LOGGING_BUILD
|
|
C_DEFINES=$(C_DEFINES) -DLOGGING_BUILD
|
|
BURNSLIB_SUFFIX=l
|
|
|
|
|
|
# ISOLATION_AWARE_ENABLED ==> use ui themes, not really needed here, but
|
|
# makes burnslib simpler to use accross DLLs and EXEs
|
|
|
|
C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE -D_UNICODE -DWORD97_STYLE -DISOLATION_AWARE_ENABLED
|
|
|
|
#C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE -D_UNICODE -DWORD97_STYLE
|
|
|
|
INCLUDES= .\; \
|
|
$(PROJECT_ROOT)\burnslib\inc; \
|
|
$(DS_INC_PATH); \
|
|
$(NET_INC_PATH); \
|
|
$(SHELL_INC_PATH);
|
|
|
|
|
|
# required for C++ exceptions
|
|
USE_NATIVE_EH=1
|
|
|
|
# required for thread-safe heap
|
|
USE_LIBCMT=1
|
|
NO_NTDLL=1
|
|
|
|
# required to support dynamic_cast
|
|
USE_RTTI=1
|
|
|
|
# required for STL (list, vector, string, etc.)
|
|
USE_STL=1
|
|
|
|
# required for precompiled header
|
|
PRECOMPILED_INCLUDE=headers.hxx
|
|
PRECOMPILED_CXX=1
|
|
|
|
# link with vccomsup.lib
|
|
USE_VCCOM=1
|
|
|
|
USE_PDB=1
|
|
|
|
MSC_WARNING_LEVEL=/W4
|
|
|
|
PASS1_PUBLISH= \
|
|
{$(O)\dspecup.lib=$(ADMIN_LIB_PATH)\dspecup.lib}
|
|
|
|
SOURCES=\
|
|
dspecup_stub.rc \
|
|
Analysis.cpp \
|
|
constants.cpp \
|
|
CSVDSReader.cpp \
|
|
repair.cpp \
|
|
global.cpp \
|
|
setChanges.cpp \
|
|
dspecup.cpp \
|
|
changes000.cpp \
|
|
changes001.cpp \
|