93 lines
1.9 KiB
Plaintext
93 lines
1.9 KiB
Plaintext
!IF 0
|
|
|
|
Copyright (c) 1989-1991 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.
|
|
|
|
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
DLLENTRY=_DllMainCRTStartup
|
|
|
|
PRECOMPILED_INCLUDE=pch.h
|
|
PRECOMPILED_PCH=pch.pch
|
|
PRECOMPILED_OBJ=pch.obj
|
|
PRECOMPILED_CXX=1
|
|
TARGETNAME=dskquota
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
USE_MSVCRT=1
|
|
USE_NATIVE_EH=1
|
|
USE_VCCOM=1
|
|
|
|
#
|
|
# Define PROFILE to enable IceCAP profiling.
|
|
#
|
|
!IF "$(PROFILE)" == "1"
|
|
USE_ICECAP=1
|
|
C_DEFINES=$(C_DEFINES) -DPROFILE
|
|
!ENDIF
|
|
|
|
#
|
|
# Add compiler definitions
|
|
#
|
|
C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE
|
|
!IF !$(FREEBUILD)
|
|
C_DEFINES=$(C_DEFINES) -DDEBUG
|
|
!ENDIF
|
|
|
|
#
|
|
# Make warnings equivalent to errors
|
|
#
|
|
MSC_WARNING_LEVEL=$(MSC_WARNING_LEVEL) /WX
|
|
|
|
INCLUDES=.;\
|
|
..\common; \
|
|
..\common\$(O);\
|
|
$(O);
|
|
|
|
PASS0_HEADERDIR=$(O)
|
|
PASS0_SOURCEDIR=$(O)
|
|
MIDL_TLBDIR=$(O)
|
|
|
|
SOURCES= \
|
|
dispatch.idl \
|
|
connect.cpp \
|
|
control.cpp \
|
|
dskquota.cpp \
|
|
dskquota.rc \
|
|
factory.cpp \
|
|
fsobject.cpp \
|
|
oadisp.cpp \
|
|
sidcache.cpp \
|
|
sidname.cpp \
|
|
user.cpp \
|
|
userenum.cpp \
|
|
userbat.cpp \
|
|
alloc.cpp
|
|
|
|
LINKLIBS=..\common\$(O)\common.lib
|
|
|
|
TARGETLIBS=$(ICECAP_LIBS) \
|
|
$(SDK_LIB_PATH)\ntdll.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\netapi32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\secur32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\shlwapi.lib
|
|
|