88 lines
1.9 KiB
Plaintext
88 lines
1.9 KiB
Plaintext
|
!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: v-akunda
|
||
|
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
C_DEFINES=$(C_DEFINES) -D_WIN32_IE=0x0500 -D__NTBUILD
|
||
|
INCLUDES=$(INCLUDES);..\lkplite
|
||
|
TERMSRV_ROOT = ..\..
|
||
|
COMMON_ROOT = $(TERMSRV_ROOT)\COMMON
|
||
|
LICENSE_ROOT = ..
|
||
|
LSERVER_ROOT=$(LICENSE_ROOT)\tlserver
|
||
|
|
||
|
TARGETNAME=lrwizdll
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=DYNLINK
|
||
|
UMTYPE=windows
|
||
|
UMENTRY=winmain
|
||
|
|
||
|
DLLDEF=LRWizDLL.def
|
||
|
COFFBASE=usermode
|
||
|
|
||
|
INCLUDES= \
|
||
|
$(INCLUDES); \
|
||
|
$(COMMON_ROOT)\license\inc; \
|
||
|
$(LSERVER_ROOT)\include; \
|
||
|
$(LSERVER_ROOT)\include\$(O);
|
||
|
|
||
|
USE_MFCUNICODE=1
|
||
|
SUBSYSTEM_VERSION=4.00
|
||
|
|
||
|
SOURCES = \
|
||
|
wwwlkp.cpp \
|
||
|
wwwreg.cpp \
|
||
|
custcont.cpp \
|
||
|
CHMOLP.cpp \
|
||
|
CHSelect.cpp \
|
||
|
Global.cpp \
|
||
|
lrwizapi.cpp \
|
||
|
LRWizDLL.cpp \
|
||
|
LrWizDLL.rc \
|
||
|
PINDlg.cpp \
|
||
|
Progress.cpp \
|
||
|
PropDlgs.cpp \
|
||
|
Utils.cpp \
|
||
|
Welcome.cpp \
|
||
|
chltype.cpp \
|
||
|
getmode.cpp \
|
||
|
oper.cpp \
|
||
|
telproc.cpp \
|
||
|
telrproc.cpp \
|
||
|
retail.cpp
|
||
|
|
||
|
TARGETLIBS=\
|
||
|
$(LICENSE_ROOT)\pidapi\lib\*\medsig.lib \
|
||
|
$(TERMSRV_ROOT)\lib\$(ALT_PROJECT_TARGET)\$(O)\tlsapip.lib \
|
||
|
$(TERMSRV_ROOT)\lib\$(O)\trust.lib \
|
||
|
$(TERMSRV_ROOT)\lib\$(O)\lkplite.lib \
|
||
|
$(DS_LIB_PATH)\bignum.lib \
|
||
|
$(DS_LIB_PATH)\rsa32.lib \
|
||
|
$(DS_LIB_PATH)\randlib.lib \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\advapi32.lib \
|
||
|
$(SDK_LIB_PATH)\gdi32.lib \
|
||
|
$(SDK_LIB_PATH)\comctl32.lib \
|
||
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
||
|
$(SDK_LIB_PATH)\wininet.lib \
|
||
|
$(SDK_LIB_PATH)\crypt32.lib \
|
||
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
||
|
$(SDK_LIB_PATH)\user32.lib
|