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.
96 lines
2.0 KiB
96 lines
2.0 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:
|
|
11-Oct-96 Now uses common.inc (t-erikne)
|
|
Created by Bryan Tuttle (bryant)
|
|
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
|
|
|
|
R=..
|
|
!include $(R)\common.inc
|
|
SOURCES_USED=$(SOURCES_USED) $(R)\common.inc
|
|
|
|
!ifdef WIN16
|
|
TARGETNAME=wabmain
|
|
!else
|
|
TARGETNAME=wab
|
|
!endif
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
#
|
|
# Fusionized
|
|
#
|
|
SXS_ASSEMBLY_NAME=Microsoft.Windows.InternetExplorer.AddressBook
|
|
SXS_ASSEMBLY_VERSION=1.0
|
|
SXS_ASSEMBLY_LANGUAGE=en
|
|
SXS_MANIFEST=wab.exe.Manifest
|
|
SXS_MANIFEST_IN_RESOURCES=1
|
|
SXS_NO_BINPLACE=1
|
|
|
|
!if $(386)
|
|
USE_NOLIBS=1
|
|
!else
|
|
USE_NTDLL=1
|
|
!endif
|
|
|
|
INCLUDES=\
|
|
$(INCLUDES);\
|
|
$(ATHROOT)\cryptdlg
|
|
|
|
!ifndef WIN16
|
|
TARGETLIBS= \
|
|
!if !$(386)
|
|
$(SDK_LIB_PATH)\ntdll.lib \
|
|
!endif
|
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\shlwapi.lib \
|
|
|
|
!else
|
|
TARGETLIBS= \
|
|
$(BASEDIR)\public\sdk\lib16\comctlie.lib \
|
|
$(ATHROOT)\common\$O\common.lib \
|
|
$(WABROOT)\wabapi\$O\wab16.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\shlwapi.lib \
|
|
$(BASEDIR)\public\sdk\lib16\clibl.lib \
|
|
$(BASEDIR)\public\sdk\lib16\plibl.lib \
|
|
$(BASEDIR)\public\sdk\lib16\windows.lib \
|
|
$(BASEDIR)\public\sdk\lib16\win16x.lib \
|
|
$(BASEDIR)\public\sdk\lib16\commdlg.lib \
|
|
$(BASEDIR)\public\sdk\lib16\shell.lib \
|
|
$(BASEDIR)\public\sdk\lib16\ver.lib
|
|
!endif
|
|
|
|
SOURCES = \
|
|
wabexe.c \
|
|
certprop.c \
|
|
wabexe.rc
|
|
|
|
SOURCES_WIN16 = \
|
|
wabexe.c
|
|
|
|
!ifdef WIN16
|
|
UMRES=$(O)\wabexe.res
|
|
PRECOMPILED_INCLUDE=
|
|
WLINKER_FLAGS=option st=32768
|
|
!endif
|
|
|
|
UMTYPE=windows
|
|
UMENTRY=winmain
|
|
|
|
BUFFER_OVERFLOW_CHECKS=NO_NTDLL
|