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.
100 lines
2.1 KiB
100 lines
2.1 KiB
!IF 0
|
|
|
|
Copyright (c) 1989 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:
|
|
|
|
Steve Wood (stevewo) 12-Apr-1990
|
|
|
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
TARGETNAME=DfrgSnap
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
|
|
INCLUDES=$(INCLUDES);..\Inc;$(O);..\dfrgui\$(O);$(SHELL_INC_PATH)
|
|
|
|
#
|
|
# Fusion stuff
|
|
#
|
|
SXS_ASSEMBLY_NAME=Microsoft.Windows.DefragSnapIn
|
|
SXS_ASSEMBLY_VERSION=1.0
|
|
SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1
|
|
SXS_MANIFEST=DfrgSnap.Manifest
|
|
SXS_MANIFEST_IN_RESOURCES=1
|
|
SXS_MANIFEST_RESOURCE_ID=123
|
|
SXS_NO_BINPLACE=1
|
|
|
|
#
|
|
# using shfusion.lib requires this
|
|
#
|
|
LINKER_FLAGS = $(LINKER_FLAGS) -ignore:4049,4217
|
|
|
|
C_DEFINES= \
|
|
-DWIN32 \
|
|
-DNDEBUG \
|
|
-D_WINDOWS \
|
|
-D_WINDLL \
|
|
-D_MBCS \
|
|
-D_USRDLL \
|
|
-DDKMS \
|
|
-DSNAPIN \
|
|
-DNOWINDOWSH \
|
|
-DDFRGSNAP \
|
|
-DUNICODE \
|
|
-D_UNICODE
|
|
|
|
USE_MSVCRT=1
|
|
USE_ATL=1
|
|
MSC_WARNING_LEVEL=/W3 /WX
|
|
PASS0_SOURCEDIR=$(O)
|
|
PASS0_HEADERDIR=$(O)
|
|
MIDL_TLBDIR=$(O)
|
|
|
|
PRECOMPILED_CXX=1
|
|
PRECOMPILED_INCLUDE=stdafx.h
|
|
PRECOMPILED_SOURCEFILE=stdafx.cpp
|
|
|
|
SOURCES=..\Alloc.cpp \
|
|
DfrgSnap.cpp \
|
|
DfrgSnap.idl \
|
|
DfrgSnap.rc \
|
|
DfrgSnapin.cpp \
|
|
..\errlog.cpp \
|
|
..\error.cpp \
|
|
..\Expand.cpp \
|
|
..\GetDfrgRes.cpp \
|
|
..\getreg.cpp \
|
|
..\logfile.cpp \
|
|
..\SecAttr.cpp \
|
|
..\vDebugGlobal.cpp \
|
|
..\vWindowAppCore.cpp
|
|
|
|
DLLENTRY=_DllMainCRTStartup
|
|
UMTYPE=windows
|
|
TARGETLIBS=\
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\mmc.lib \
|
|
$(SDK_LIB_PATH)\shlwapi.lib \
|
|
$(SHELL_LIB_PATH)\shfusion.lib
|