Makefile
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:3k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. #
  2. #/****************License************************************************
  3. # * Vocalocity OpenVXI
  4. # * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  5. # * This program is free software; you can redistribute it and/or
  6. # * modify it under the terms of the GNU General Public License
  7. # * as published by the Free Software Foundation; either version 2
  8. # * of the License, or (at your option) any later version.
  9. # *  
  10. # * This program is distributed in the hope that it will be useful,
  11. # * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # * GNU General Public License for more details.
  14. # *
  15. # * You should have received a copy of the GNU General Public License
  16. # * along with this program; if not, write to the Free Software
  17. # * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18. # * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  19. # * registered trademarks of Vocalocity, Inc. 
  20. # * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  21. # * by Vocalocity.
  22. # ***********************************************************************/
  23. #
  24. #--------------------------------------------
  25. # Required Environment Variables
  26. #--------------------------------------------
  27. SHELL = /bin/sh
  28. ifndef SWISBSDK
  29. $(error The environment variable SWISBSDK is not defined (it should point to your baseline directory))
  30. endif
  31. # By default, set PRODUCT_LIB_PREFIX to SB
  32. ifndef PRODUCT_LIB_PREFIX
  33. PRODUCT_LIB_PREFIX = SB
  34. $(message PRODUCT_LIB_PREFIX not defined. Defaulting to SB)
  35. endif
  36. #--------------------------------------------
  37. # Include the common def's and config logic
  38. #--------------------------------------------
  39. PROJ_ROOT = ..
  40. include ../make/i386-linux/make.defs
  41. #--------------------------------------------
  42. # Project specific settings
  43. #--------------------------------------------
  44. PROJ_CFLAGS = 
  45.   -DCOMPANY_DOMAIN=L"com.vocalocity" 
  46.   -DMODULE_PREFIX=L"swi:" 
  47. -DVXITRD_RECURSIVE_MUTEX 
  48. -DVXITRD_KERNEL_MUTEX
  49. PROJ_LIBS =
  50. PUBLIC_HEADERS = 
  51. trdUtil/SBtrdMutex.hpp 
  52. trdUtil/SBtrdRefCount.hpp 
  53. trdUtil/SBtrdEvent.hpp 
  54. trdUtil/SBtrdTimeOfDay.hpp 
  55. # Mask the exports of shared objects by explicitly listing public functions
  56. EXPLICIT_VER_FILES = 1
  57. # Set defaults for the library version and product name burnt into
  58. # shared libraries
  59. LIBVER = 3
  60. # Define libaries to be build
  61. STATIC_LIBS = $(PRODUCT_LIB_PREFIX)trdUtil
  62. LIBS = $(PRODUCT_LIB_PREFIX)trd
  63. # Define library sources
  64. $(PRODUCT_LIB_PREFIX)trd_SRC = 
  65. SBtrdPthreads.cpp
  66. $(PRODUCT_LIB_PREFIX)trdUtil_SRC = 
  67. trdUtil/SBtrdMutex.cpp 
  68. trdUtil/SBtrdRefCount.cpp 
  69. trdUtil/SBtrdEvent.cpp 
  70. trdUtil/SBtrdTimeOfDay.cpp
  71. # Define any linked libraries
  72. $(PRODUCT_LIB_PREFIX)trd_LDLIBS =
  73. # Define version file
  74. $(PRODUCT_LIB_PREFIX)trd_VER = SBtrdUnix.ver
  75. #--------------------------------
  76. # Programs
  77. #--------------------------------
  78. PROGS =
  79. #---------------------------------------------
  80. # Include some rules common to all makefiles
  81. #---------------------------------------------
  82. include ../make/i386-linux/make.rules