74 lines
1.4 KiB
Plaintext
74 lines
1.4 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=fspext
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
|
|
UMTYPE=windows
|
|
DLLDEF=fspext.def
|
|
DLLENTRY=_DllMainCRTStartup
|
|
|
|
USE_ATL=1
|
|
USE_MSVCRT=1
|
|
|
|
PRECOMPILED_CXX=1
|
|
PRECOMPILED_INCLUDE=stdafx.h
|
|
PRECOMPILED_PCH=precomp.pch
|
|
PRECOMPILED_OBJ=precomp.obj
|
|
|
|
C_DEFINES=$(C_DEFINES) $(ATL_FLAGS) -D_ATL_NO_DEBUG_CRT
|
|
|
|
INCLUDES=$(INCLUDES);$(ATL_INCLUDES)
|
|
|
|
TARGETLIBS= \
|
|
$(TARGETLIBS) \
|
|
$(SDK_LIB_PATH)\mmc.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)\winfax.lib \
|
|
$(FAXROOT)\lib\*\winfaxp.lib
|
|
|
|
SOURCES= \
|
|
fspext.idl \
|
|
stdafx.cpp \
|
|
fsp.cpp \
|
|
fspext.cpp \
|
|
fspext.rc
|
|
|