Leaked source code of windows server 2003
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.
|
|
!IF 0
Copyright (c) 1997-1999 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.
History: Common ccshell makefile and cleanup 15-Apr-96 Scott Hysom (scotth) Created 27-Sep-94 by Bob Day (bobday) from template created 12-Apr-1990 by Steve Wood (stevewo)
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
!ENDIF
CCSHELL_DIR = $(PROJECT_ROOT)
!include $(CCSHELL_DIR)\common.inc SOURCES_USED = $(SOURCES_USED) $(CCSHELL_DIR)\common.inc
NO_BROWSER_FILE = 1 INCLUDES = $(INCLUDES);$(O);$(DS_INC_PATH);
TARGETNAME = nusrmgr TARGETEXT = cpl TARGETPATH = obj TARGETTYPE = DYNLINK
TARGETLIBS = \ $(LIBRARY_PATH)\kernel32.lib \ $(LIBRARY_PATH)\user32.lib \ $(LIBRARY_PATH)\netapi32.lib \ $(LIBRARY_PATH)\advapi32.lib \ $(DS_LIB_PATH)\creduip.lib \ $(LIBRARY_PATH)\gdi32.lib \ $(LIBRARY_PATH)\ole32.lib \ $(LIBRARY_PATH)\oleaut32.lib \ $(PROJECT_LIB_PATH)\shfusion.lib \ $(LIBRARY_PATH)\shlwapi.lib \ $(PROJECT_LIB_PATH)\shlwapip.lib \ $(LIBRARY_PATH)\shell32.lib \ $(PROJECT_LIB_PATH)\shguidp.lib \ $(CCSHELL_DIR)\lib\$(O)\stock.lib \ $(DS_LIB_PATH)\keymgr.lib \ $(LIBRARY_PATH)\uuid.lib
DELAYLOAD = keymgr.dll DLOAD_ERROR_HANDLER=kernel32
DLLDEF = $(O)\nusrmgr.def DLLENTRY = DllMain
SOURCES = \ commondialog.cpp \ cpl.cpp \ debug.cpp \ nusrmgr.cpp \ passportmanager.cpp \ toolbar.cpp \ nusrmgr.idl \ nusrmgr.rc
USE_ATL=1 USE_MSVCRT=1
PRECOMPILED_CXX = 1 PRECOMPILED_INCLUDE = stdafx.h
PASS0_HEADERDIR=$(O) PASS0_SOURCEDIR=$(O) MIDL_UUIDDIR=$(O) MIDL_TLBDIR=$(O)
# specify -Oicf once MIDL_OPTIMIZATION=$(MIDL_OPTIMIZATION:-Oicf=) -Oicf
SELFREGNAME = $(O)\selfreg_$(TARGETNAME).inf MISCFILES = $(MISCFILES) $(SELFREGNAME) NTTARGETFILE0 = $(SELFREGNAME)
# Dynamically loading comctl32 through shfusion. Need to ignore "locally defined symbol imported" error LINKER_FLAGS = $(LINKER_FLAGS) -ignore:4049,4217
SXS_ASSEMBLY_NAME=Microsoft.Windows.$(TARGETNAME) SXS_ASSEMBLY_VERSION=1.0 SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1 SXS_MANIFEST=$(TARGETNAME).manifest SXS_MANIFEST_IN_RESOURCES=1 SXS_MANIFEST_RESOURCE_ID=123 SXS_NO_BINPLACE=1
|