75 lines
1.5 KiB
Plaintext
75 lines
1.5 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=routeext
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=DYNLINK
|
||
|
|
||
|
UMTYPE=windows
|
||
|
DLLDEF=routeext.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)\winspool.lib \
|
||
|
$(SDK_LIB_PATH)\shell32.lib \
|
||
|
$(SDK_LIB_PATH)\winfax.lib \
|
||
|
$(FAXROOT)\lib\*\winfaxp.lib
|
||
|
|
||
|
SOURCES= \
|
||
|
routeext.idl \
|
||
|
stdafx.cpp \
|
||
|
route.cpp \
|
||
|
routeext.cpp \
|
||
|
routeext.rc
|
||
|
|