59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
#---------------------------------------------------------------------
|
|
#
|
|
# This makefile is for use with the SMSBUILD utility. It builds the
|
|
# WMI ISAPI remote.
|
|
#
|
|
# Copyright (c) 1998-1999 Microsoft Corporation
|
|
#
|
|
# created 02-13-98 rajeshr
|
|
#
|
|
#---------------------------------------------------------------------
|
|
|
|
TARGET=wmixmlst.dll
|
|
|
|
NO_OPTIM=1
|
|
STATIC=FALSE
|
|
|
|
CINC+=\
|
|
-I..\idl \
|
|
-I$(IDL) \
|
|
-I$(IDL)\OBJ$(PLAT)$(OPST)$(BLDT)D \
|
|
-I$(DEFDRIVE)$(DEFDIR)\include \
|
|
-I$(DEFDRIVE)$(DEFDIR)\stdlibrary \
|
|
-I$(DEFDRIVE)$(DEFDIR)\Providers\Framework\Provmfc\include \
|
|
-I$(DEFDRIVE)$(DEFDIR)\Providers\Framework\Thrdlog\include \
|
|
-I$(DEFDRIVE)$(DEFDIR)\Providers\Framework\Provexpt\include \
|
|
-I$(stdlibrary) \
|
|
|
|
CFLAGS=$(CFLAGS) -D_WIN32_WINNT=0x0400 -DUNICODE -D_UNICODE
|
|
release=core\$(RELDIR)
|
|
|
|
|
|
DLLSTARTUP= -ENTRY:_DllMainCRTStartup$(DLLENTRY)
|
|
|
|
!if "$(PROCESSOR_ARCHITECTURE)"=="x86"
|
|
DEFFILE=INTEL.DEF
|
|
!else
|
|
DEFFILE=RISC.DEF
|
|
!endif
|
|
|
|
!if "$(OPSYS)"=="NT64"
|
|
DEFFILE=64.DEF
|
|
!endif
|
|
|
|
CPPFILES=\
|
|
.\maindll.cpp \
|
|
.\wmixmlstf.cpp \
|
|
.\cwmixmlst.cpp \
|
|
.\xmlsec.cpp \
|
|
.\cwmixmlserv.cpp \
|
|
|
|
LIBS=\
|
|
$(LIBS)\
|
|
$(CONLIBS) \
|
|
..\idl\objinld\wmixmlst.lib \
|
|
$(IDL)\OBJ$(PLAT)$(OPST)$(BLDT)D\wbemuuid.lib
|
|
|
|
VER_STR_FILE_DESCRIPTION="WMI XML Transport"
|
|
|