86 lines
2.4 KiB
Plaintext
86 lines
2.4 KiB
Plaintext
!IF 0
|
|
|
|
Copyright (c) 1997-2000 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:
|
|
Moved from \nt\shell\ext\AutoDiscovery\ to \nt\inetcore\OutlookExpress\AutoDiscovery\ 10-Apr-2000 Bryan Starbuck (BryanSt)
|
|
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
|
|
|
|
NOT_UNICODE = 1
|
|
TARGET_BOTH = 1
|
|
PRECOMPILED_CXX = 1
|
|
|
|
NO_BROWSER_FILE = 1
|
|
|
|
SOURCES_USED = $(SOURCES_USED)
|
|
INCLUDES = $(SDK_LIB_PATH);$(SDK_INC_PATH);$(INCLUDES);$(PROJECT_ROOT)\lib\$(0);$(O);$(SHELL_INC_PATH)
|
|
|
|
WIN32_WINNT_VERSION=0x0400
|
|
WIN32_WIN95_VERSION=0x0400
|
|
|
|
SUBSYSTEM_VERSION=4.00
|
|
|
|
TARGETNAME = ADStress
|
|
TARGETPATH = obj
|
|
TARGETTYPE = PROGRAM
|
|
|
|
|
|
UMTYPE = console
|
|
UMAPPLEXT = .exe
|
|
UMENTRY = main
|
|
|
|
|
|
# make sure shlwapi.lib is before shell32.lib for override.
|
|
# for DOJ compliance, don't link to private shell libs (shell32p.lib, comctlp.lib)
|
|
TARGETLIBS = \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SHELL_LIB_PATH)\shlwapip.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(LIBRARY_PATH)\wininet.lib
|
|
|
|
USE_LIBCMT=1
|
|
|
|
DLLDEF = $(O)\resource.def
|
|
DLLBASE = 0x71200000
|
|
DELAYLOAD =
|
|
|
|
|
|
PRECOMPILED_INCLUDE = priv.h
|
|
|
|
SOURCES = debug.cpp \
|
|
main.cpp \
|
|
util.cpp \
|
|
resource.rc
|
|
|
|
PRECOMPILED_INCLUDE = priv.h
|
|
|
|
|
|
C_DEFINES= $(C_DEFINES) -DWIN32
|
|
#USE_CRTDLL=1
|
|
#WARNING_LEVEL=-W4
|