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.
66 lines
1.8 KiB
66 lines
1.8 KiB
#
|
|
# The TARGETNAME variable is defined by the developer. It is the name of
|
|
# the target (component) that is being built by this makefile. It
|
|
# should NOT include any path or file extension information.
|
|
#
|
|
TARGETNAME = SAAppleTalk
|
|
TARGETPATH = $(SASS_BINDIR)
|
|
TARGETTYPE = DYNLINK
|
|
|
|
DLLENTRY=_DllMainCRTStartup
|
|
DLLDEF=SAAppletalk.def
|
|
|
|
TARGETLIBS = $(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\winspool.lib \
|
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\odbc32.lib \
|
|
$(SDK_LIB_PATH)\odbccp32.lib \
|
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
|
$(BASEDIR)\public\internal\net\lib\*\ndispnp.lib \
|
|
|
|
#
|
|
# The INCLUDES variable specifies any include paths that are specific to
|
|
# this source directory. Separate multiple directory paths with single
|
|
# semicolons. Relative path specifications are okay.
|
|
#
|
|
INCLUDES = \
|
|
$(SASS_INC); \
|
|
$(BASEDIR)\public\sdk\inc\atl21; \
|
|
|
|
PRECOMPILED_INCLUDE = stdafx.h
|
|
PRECOMPILED_SOURCEFILE = stdafx.cpp
|
|
PRECOMPILED_CXX=1
|
|
|
|
MIDL_OPTIMIZATION=-Oicf -robust -no_format_opt -error all
|
|
|
|
USE_STATIC_ATL=1
|
|
ATL_VER=21
|
|
USE_STL=1
|
|
USE_RTTI=1
|
|
USE_VCCOM=1
|
|
USE_MSVCRT=1
|
|
|
|
USER_C_FLAGS=-EHsc
|
|
C_DEFINES=$(C_DEFINES) -DUNICODE -D_UNICODE -DUSE_POLARITY
|
|
C_DEFINES=$(C_DEFINES) -DSHOWCALLS
|
|
|
|
|
|
SOURCES = SAAppleTalk.cpp \
|
|
SAAppleTalk.idl \
|
|
SAAppleTalk.rc \
|
|
AppleTalk.cpp \
|
|
AtlkAdapter.cpp \
|
|
ndispnpevent.cpp \
|
|
|
|
#
|
|
# Misc files to be binplaced by the build.
|
|
#
|
|
MISCFILES = SAAppleTalk.reg
|
|
|