105 lines
2 KiB
Plaintext
105 lines
2 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:
|
|
|
|
Darwin Ouyang (t-darouy)
|
|
Original: Wesley Witt
|
|
|
|
!ENDIF
|
|
|
|
|
|
!ifndef FAXROOT
|
|
FAXROOT=$(PROJECT_ROOT)\fax
|
|
!endif
|
|
|
|
!include $(FAXROOT)\faxsrc.inc
|
|
|
|
TARGETNAME=faxadmin
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
|
|
UMTYPE=windows
|
|
DLLDEF=faxadmin.def
|
|
DLLENTRY=_DllMainCRTStartup
|
|
|
|
USE_ATL=1
|
|
USE_MSVCRT=1
|
|
USE_NATIVE_EH=1
|
|
|
|
PRECOMPILED_CXX=1
|
|
PRECOMPILED_INCLUDE=stdafx.h
|
|
PRECOMPILED_PCH=precomp.pch
|
|
PRECOMPILED_OBJ=precomp.obj
|
|
|
|
!if "$(COMPUTERNAME)" == "T-DAROUYX86"
|
|
POST_BUILD_CMD=regsvr32 /s $(_NTTREE)\faxadmin.dll
|
|
DEBUG_CRTS=1
|
|
!endif
|
|
|
|
TARGETLIBS= \
|
|
$(TARGETLIBS) \
|
|
$(SDK_LIB_PATH)\mmc.lib \
|
|
$(SDK_LIB_PATH)\aclui.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\wininet.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\shlwapi.lib \
|
|
$(SDK_LIB_PATH)\winfax.lib \
|
|
$(FAXROOT)\lib\*\winfaxp.lib
|
|
|
|
SOURCES= \
|
|
stdafx.cpp \
|
|
faxadmin.cpp \
|
|
faxsnapin.cpp \
|
|
faxsabout.cpp \
|
|
faxcomp.cpp \
|
|
faxcompd.cpp \
|
|
faxpersist.cpp \
|
|
faxdataobj.cpp \
|
|
faxstrt.cpp \
|
|
faxsecinfo.cpp \
|
|
faxhelper.cpp \
|
|
faxproppg.cpp \
|
|
faxcprppg.cpp \
|
|
faxconmenu.cpp \
|
|
faxcconmn.cpp \
|
|
faxconbar.cpp \
|
|
faxcconbar.cpp \
|
|
inode.cpp \
|
|
iroot.cpp \
|
|
idevices.cpp \
|
|
idevice.cpp \
|
|
ilogging.cpp \
|
|
ilogcat.cpp \
|
|
dcomputer.cpp \
|
|
ddevmain.cpp \
|
|
dgenprop.cpp \
|
|
droutpri.cpp \
|
|
faxshelp.cpp \
|
|
faxadmin.idl \
|
|
faxadmin.rc
|
|
|
|
MISCFILES = \
|
|
faxserv.msc
|