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.
103 lines
2.9 KiB
103 lines
2.9 KiB
!IF 0
|
|
|
|
Copyright (c) 1989-1996 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
|
|
|
|
GETCONN_DIR = ..\..\
|
|
|
|
TARGET_BOTH = 1
|
|
USE_MSVCRT = 1
|
|
|
|
#
|
|
# Include our common makefile
|
|
#
|
|
|
|
!include $(GETCONN_DIR)\common.inc
|
|
|
|
INCLUDES = $(INCLUDES);$(GETCONN_DIR)\icwconn1;$(SHELL_INC_PATH)
|
|
|
|
# USE cdecl calling
|
|
386_STDCALL = 0
|
|
#
|
|
# Common settings required by build.exe and makefile.def
|
|
#
|
|
|
|
TARGETNAME = icwdebug
|
|
TARGETPATH = obj
|
|
TARGETTYPE = PROGRAM
|
|
TARGETLIBS =
|
|
PRECOMPILED_CXX = 1
|
|
|
|
#SET THE ICWDEBUG FLAG FOR THE IFDEFs
|
|
C_DEFINES = $(C_DEFINES) -DICWDEBUG -DNASHVILLE
|
|
|
|
LINKLIBS = $(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
|
$(SDK_LIB_PATH)\mpr.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\shlwapi.lib \
|
|
$(SHELL_LIB_PATH)\shlwapip.lib \
|
|
$(SDK_LIB_PATH)\fdi.lib \
|
|
!if defined(NOT_UNICODE)
|
|
$(GETCONN_DIR)\lib\ansi\$O\stocklib.lib \
|
|
!else
|
|
$(GETCONN_DIR)\lib\unicode\$O\stocklib.lib \
|
|
!endif
|
|
|
|
|
|
!if $(386)
|
|
UMENTRYABS = ModuleEntry@0
|
|
!else
|
|
UMENTRYABS = ModuleEntry
|
|
!endif
|
|
|
|
#
|
|
# List of sources
|
|
#
|
|
SOURCES= \
|
|
..\icwconn1.rc \
|
|
..\icwconn1.cpp \
|
|
..\icwextsn.cpp \
|
|
..\icwext.cpp \
|
|
..\debug.cpp \
|
|
..\gendlg.cpp \
|
|
..\desktop.cpp \
|
|
..\reboot.cpp \
|
|
..\icwhelp.cpp \
|
|
..\end.cpp \
|
|
..\util.cpp \
|
|
..\icwdebug.cpp \
|
|
..\fdi.cpp \
|
|
..\appwnd.cpp \
|
|
..\button.cpp \
|
|
..\icwsupr.cpp
|
|
|
|
|
|
PRECOMPILED_INCLUDE = ..\pre.h
|