Makefile.NT
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:4k
源码类别:
xml/soap/webservice
开发平台:
Visual C++
- #
- #/****************License************************************************
- # * Vocalocity OpenVXI
- # * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
- # * This program is free software; you can redistribute it and/or
- # * modify it under the terms of the GNU General Public License
- # * as published by the Free Software Foundation; either version 2
- # * of the License, or (at your option) any later version.
- # *
- # * This program is distributed in the hope that it will be useful,
- # * but WITHOUT ANY WARRANTY; without even the implied warranty of
- # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # * GNU General Public License for more details.
- # *
- # * You should have received a copy of the GNU General Public License
- # * along with this program; if not, write to the Free Software
- # * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- # * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or
- # * registered trademarks of Vocalocity, Inc.
- # * OpenVXI is a trademark of Scansoft, Inc. and used under license
- # * by Vocalocity.
- # ***********************************************************************/
- #
- #**********************************************************************
- #
- # SBcache, Vocalocity cache library
- # NT make file
- #
- #
- #**********************************************************************/
- #--------------------------------
- # Required Environment Variables
- #--------------------------------
- !ifndef SWISBSDK
- !error The environment variable SWISBSDK is not defined (it should point to your baseline directory).
- !endif
- # By default, set PRODUCT_LIB_PREFIX to SB
- !if "$(PRODUCT_LIB_PREFIX)" == ""
- !message PRODUCT_LIB_PREFIX not defined. Defaulting to SB
- PRODUCT_LIB_PREFIX = SB
- !endif
- #--------------------------------
- # Project specific settings
- #--------------------------------
- PROJ_ROOT = ..
- BUILDSUBDIRS =
- PUBLIC_HEADERS =
- SBcache.h
- PUBLIC_ERROR_FILES =
- SBcacheErrors.xml
- SBcacheDiagnostics.xml
- PROJ_CFLAGS =
- -DCOMPANY_DOMAIN=L"com.vocalocity"
- -DMODULE_PREFIX=L"swi:"
- MYLFLAGS =
- # Suppress using a *.def file to define exports from DLLs, use the
- # SYMBOL_EXPORT_DECL definition from VXIheaderPrefix.h instead
- NO_DEF_FILES = 1
- #--------------------------------
- # Static libraries
- #--------------------------------
- LIBS =
- #--------------------------------
- # Dynamic libraries
- #--------------------------------
- DLLS = $(PRODUCT_LIB_PREFIX)cache
- $(PRODUCT_LIB_PREFIX)cache_OBJS =
- $(BUILDDIR)/md5.obj
- $(BUILDDIR)/base64.obj
- $(BUILDDIR)/SBcacheMisc.obj
- $(BUILDDIR)/SBcacheEntry.obj
- $(BUILDDIR)/SBcacheManager.obj
- $(BUILDDIR)/SBcache.obj
- $(BUILDDIR)/SBinetLogger.obj
- $(BUILDDIR)/SBcache.res
- $(PRODUCT_LIB_PREFIX)cache_LIBS =
- VXIvalue$(CFG_SUFFIX).lib
- $(PRODUCT_LIB_PREFIX)trd$(CFG_SUFFIX).lib
- $(PRODUCT_LIB_PREFIX)trdUtil$(CFG_SUFFIX).lib
- #-------------------------------------
- # Programs
- #-------------------------------------
- PROGS =
- #--------------------------------------------
- # Include the common def's and config logic
- #--------------------------------------------
- !include "..makei386-win32make.defs"
- #------------------------------------------------
- # Targets
- #------------------------------------------------
- all : $(LIBS) $(DLLS) $(PROGS)
- #---------------------------------------------
- # Include some rules common to all makefiles
- #---------------------------------------------
- !include "..makei386-win32make.rules"