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.
111 lines
2.7 KiB
111 lines
2.7 KiB
!IF 0
|
|
|
|
Copyright (c) 2000 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:
|
|
|
|
Oren Rosenbloom (orenr) 14-Mar-2000 - Rewrite
|
|
Wesley Witt (wesw)
|
|
|
|
|
|
!ENDIF
|
|
|
|
|
|
!include ..\..\faxsrc.inc
|
|
|
|
TARGETNAME=$(FAXOCM)
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
DLLDEF=faxocm.def
|
|
DLLENTRY=_DllMainCRTStartup
|
|
|
|
C_DEFINES=$(C_DEFINES) -DMAPI_DIM=0 -DENABLE_FRE_LOGGING
|
|
|
|
UMTYPE=windows
|
|
USE_MSVCRT=1
|
|
USE_STATIC_ATL=1
|
|
ATL_VER=30
|
|
USE_ATL=1
|
|
MIDL_TLBDIR=.
|
|
|
|
NTKEEPRESOURCETMPFILES=1
|
|
|
|
INCLUDES=\
|
|
$(INCLUDES);\
|
|
..\inc;\
|
|
$(FAXROOT)\service\server; \
|
|
$(BASEDIR)\public\internal\shell\inc; \
|
|
$(BASEDIR)\public\internal\windows\inc; \
|
|
$(DS_INC_PATH);\
|
|
$(SDKTOOLS_INC_PATH)
|
|
|
|
LINKLIBS=\
|
|
$(LINKLIBS)
|
|
|
|
TARGETLIBS = \
|
|
$(TARGETLIBS) \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\kernl32p.lib \
|
|
$(SDK_LIB_PATH)\netapi32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\setupapi.lib \
|
|
$(SDK_LIB_PATH)\tapi32.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\version.lib \
|
|
$(SDK_LIB_PATH)\userenv.lib \
|
|
$(SDK_LIB_PATH)\winspool.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\advpack.lib \
|
|
$(SDK_LIB_PATH)\loadperf.lib \
|
|
$(SDK_LIB_PATH)\shlwapi.lib \
|
|
$(FAXLIB)\*\$(WINFAX).lib \
|
|
$(FAXROOT)\setup\util\unicode\obj\*\setuputil.lib \
|
|
$(FAXROOT)\util\debugex\unicode\obj\*\debugex.lib
|
|
|
|
!if $(ALPHA) && !$(AXP64)
|
|
TARGETLIBS = \
|
|
$(TARGETLIBS) \
|
|
$(SDK_LIB_PATH)\wx86ofl.lib
|
|
!endif
|
|
|
|
DELAYLOAD=fxsapi.dll
|
|
|
|
DLOAD_ERROR_HANDLER=kernel32
|
|
|
|
SOURCES=\
|
|
version.rc \
|
|
faxocmwizard.rc \
|
|
faxocm.cpp \
|
|
fxConst.cpp \
|
|
fxocFile.cpp \
|
|
fxocLink.cpp \
|
|
fxocMapi.cpp \
|
|
fxocPrnt.cpp \
|
|
fxocUpgrade.cpp \
|
|
fxocDbg.cpp \
|
|
fxocReg.cpp \
|
|
fxocSvc.cpp \
|
|
fxocUtil.cpp \
|
|
fxUnatnd.cpp \
|
|
fxState.cpp \
|
|
FaxControl.idl \
|
|
StdAfx.cpp \
|
|
FaxControl.cpp \
|
|
IFaxControl.cpp
|
|
|