mirror of https://github.com/tongzx/nt5src
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.
105 lines
2.4 KiB
105 lines
2.4 KiB
!IF 0
|
|
|
|
Copyright (c) 1995 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.
|
|
|
|
|
|
Revision History:
|
|
|
|
!ENDIF
|
|
|
|
!include ..\sources.inc
|
|
|
|
TARGETNAME=qmgr
|
|
TARGETTYPE=DYNLINK
|
|
DLLENTRY=_DllMainCRTStartup
|
|
|
|
INCLUDES=$(INCLUDES);..\inc;$(O);..\idl\$(O)
|
|
|
|
C_DEFINES=$(C_DEFINES) /DUNICODE
|
|
|
|
#
|
|
# Use the multithreaded C runtime DLL.
|
|
#
|
|
USE_MSVCRT=1
|
|
|
|
#
|
|
# Use ATL 3.0 headers.
|
|
#
|
|
USE_ATL=1
|
|
ATL_VER=30
|
|
|
|
#
|
|
# This component uses C++ exception handling.
|
|
#
|
|
USE_NATIVE_EH=1
|
|
|
|
DELAYLOAD=\
|
|
|
|
TARGETPATH=..\bins\$(_OBJ_DIR)
|
|
TARGETLIBS=$(TARGETLIBS) \
|
|
..\newjob\$(O)\qmgr.lib \
|
|
..\utils\$(O)\qmgrutils.lib \
|
|
..\lib\$(O)\bits.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\ntdll.lib \
|
|
$(SDK_LIB_PATH)\userenv.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\advpack.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\wtsapi32.lib \
|
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
|
$(SDK_LIB_PATH)\shlwapi.lib \
|
|
$(SDK_LIB_PATH)\version.lib \
|
|
$(SDK_LIB_PATH)\setupapi.lib \
|
|
$(SDK_LIB_PATH)\fdi.lib \
|
|
$(SDK_LIB_PATH)\crypt32.lib \
|
|
$(SDK_LIB_PATH)\ShFolder.Lib \
|
|
$(SDK_LIB_PATH)\urlmon.lib \
|
|
$(SDK_LIB_PATH)\iphlpapi.lib \
|
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
|
$(SDK_LIB_PATH)\irnotif.lib \
|
|
$(SDK_LIB_PATH)\advapip.lib \
|
|
!if defined(USE_WININET)
|
|
$(SDK_LIB_PATH)\wininet.lib \
|
|
!else
|
|
$(SDK_LIB_PATH)\winhttp.lib \
|
|
!endif
|
|
|
|
SOURCES= \
|
|
service.cxx \
|
|
drizzle.rc \
|
|
memory.cxx \
|
|
|
|
MISCFILES=qmgr.inf \
|
|
BITS_{0B59F77F-257C-472C-A965-AEA45B5F2B4F}.sld \
|
|
|
|
UMTEST=client
|
|
UMENTRY=wmain
|
|
UMTYPE=console
|
|
UMLIBS=\
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(PROJECT_LIB_PATH)\qmgrlib.lib \
|
|
|
|
|
|
BINPLACE_PLACEFILE=..\placefil.txt
|
|
|
|
!if !defined( BITS_V12_ON_NT4 )
|
|
RUN_WPP=$(SOURCES) -dll -gen:{um-w2k.tpl}*.tmh
|
|
!endif
|