(file) Return to config.mak CVS log (file) (dir) Up to [Pegasus] / pegasus / mak

  1 mike  1.1 ################################################################################
  2           ##
  3           ## Get external environment variables. Note that all external environment
  4           ## variables begin with "PEGASUS_".
  5           ##
  6           ################################################################################
  7           
  8 konrad.r 1.55 ifndef ROOT
  9                   ROOT =  $(subst \,/,$(PEGASUS_ROOT))
 10               endif
 11               
 12 denise.eckstein 1.61 ifdef PEGASUS_ENVVAR_FILE
 13 david.dillard   1.65     include $(PEGASUS_ENVVAR_FILE)
 14 denise.eckstein 1.61 else
 15 david.dillard   1.65     include $(ROOT)/env_var.status
 16 denise.eckstein 1.61 endif
 17 konrad.r        1.55 
 18 mike            1.2  ifdef PEGASUS_HOME
 19 david.dillard   1.65     HOME_DIR = $(subst \,/,$(PEGASUS_HOME))
 20 mike            1.1  else
 21 david.dillard   1.65     $(error PEGASUS_HOME environment variable undefined)
 22 mike            1.1  endif
 23                      
 24 karl            1.18 ifdef PEGASUS_ROOT
 25                          ROOT =  $(subst \,/,$(PEGASUS_ROOT))
 26                      else
 27 david.dillard   1.65     $(error PEGASUS_ROOT environment variable undefined)
 28 karl            1.18 endif
 29                      
 30 chuck           1.35 # l10n
 31                      ifdef ICU_ROOT
 32                          ICUROOT =  $(subst \,/,$(ICU_ROOT))
 33                      endif
 34                      
 35 kumpf           1.21 ifdef PEGASUS_TMP
 36 david.dillard   1.65     TMP_DIR = $(subst \,/,$(PEGASUS_TMP))
 37 kumpf           1.21 else
 38 david.dillard   1.65     TMP_DIR = .
 39 kumpf           1.21 endif
 40                      
 41 kumpf           1.26 ifdef PEGASUS_DISPLAYCONSUMER_DIR
 42 david.dillard   1.65     DISPLAYCONSUMER_DIR = $(subst \,/,$(PEGASUS_DISPLAYCONSUMER_DIR))
 43 kumpf           1.26 else
 44 david.dillard   1.65     DISPLAYCONSUMER_DIR = $(subst \,/,$(PEGASUS_HOME))
 45 kumpf           1.26 endif
 46                      
 47 david.dillard   1.66 PLATFORM_FILES=$(wildcard $(ROOT)/mak/platform*.mak)
 48 karl            1.78 PLATFORM_TEMP=$(subst $(ROOT)/mak/platform_,, $(PLATFORM_FILES))
 49                      VALID_PLATFORMS=$(subst .mak,, $(PLATFORM_TEMP))
 50 mike            1.8  
 51                      ifndef PEGASUS_PLATFORM
 52 david.dillard   1.66     $(error PEGASUS_PLATFORM environment variable undefined. Please set to\
 53                              one of the following:$(VALID_PLATFORMS))
 54 mike            1.8  endif
 55                      
 56 mike            1.1  ################################################################################
 57                      
 58 kumpf           1.22 OBJ_DIR = $(HOME_DIR)/obj/$(DIR)
 59                      BIN_DIR = $(HOME_DIR)/bin
 60                      LIB_DIR = $(HOME_DIR)/lib
 61 chuck           1.35 
 62                      # l10n
 63                      # define the location for the compiled messages
 64                      MSG_ROOT = $(HOME_DIR)/msg
 65 kumpf           1.22 
 66                      # define the location for the repository
 67                      REPOSITORY_DIR = $(HOME_DIR)
 68 jim.wunderlich  1.81 REPOSITORY_NAME = repository
 69                      REPOSITORY_ROOT = $(REPOSITORY_DIR)/$(REPOSITORY_NAME)
 70                      
 71                      # define the repository mode 
 72                      #	XML = XML format
 73                      #	BIN = Binary format
 74                      #
 75                      REPOSITORY_MODE = XML
 76 mike            1.1  
 77 kumpf           1.23 # The two variables, CIM_SCHEMA_DIR and CIM_SCHEMA_VER,
 78 chip            1.76 # are used to control the version of the CIM Schema
 79 kumpf           1.23 # loaded into the Pegasus Internal, InterOp,
 80                      # root/cimv2 and various test namespaces.
 81                      #
 82 chip            1.76 # Update the following two environment variables to
 83 kumpf           1.23 # change the version.
 84                      
 85 kumpf           1.37 # The environment variable PEGASUS_CIM_SCHEMA can be used
 86 chip            1.76 # to change the values of CIM_SCHEMA_DIR, CIM_SCHEMA_VER
 87 kumpf           1.37 # and ALLOW_EXPERIMENTAL.
 88                      #
 89                      # To use the PEGASUS_CIM_SCHEMA variable the Schema mof
 90                      # files must be placed in the directory
 91                      # $(PEGAUS_ROOT)/Schemas/$(PEGASUS_CIM_SCHEMA)
 92 chip            1.76 #
 93 kumpf           1.37 # The value of PEGASUS_CIM_SCHEMA must conform to the
 94                      # following syntax:
 95                      #
 96                      #        CIM[Prelim]<CIM_SCHEMA_VER>
 97                      #
 98 chip            1.76 # The string "Prelim" should be included if the
 99 kumpf           1.37 # Schema contains "Experimental" class definitions.
100                      #
101                      # The value of <CIM_SCHEMA_VER> must be the value
102 chip            1.76 # of the version string included by the DMTF as
103                      # part of the mof file names (e.g, CIM_Core27.mof).
104 kumpf           1.37 # Therefore, for example, the value of <CIM_SCHEMA_VER>
105                      # for CIM27 Schema directories MUST be 27.
106                      #
107 chip            1.76 # Examples of valid values of PEGASUS_CIM_SCHEMA
108 kumpf           1.37 # include CIMPrelim27, CIM27, CIMPrelim28, and CIM28.
109                      #
110                      # Note the CIMPrelim271 would NOT be a valid value
111                      # for PEGASUS_CIM_SCHEMA because the version string
112                      # portion of the mof files (e.g., CIM_Core27.mof) in
113                      # the CIMPrelimin271 directory is 27 not 271.
114 kumpf           1.23 
115 gerarda         1.29 # ***** CIM_SCHEMA_DIR INFO ****
116                      # If CIM_SCHEMA_DIR changes to use a preliminary schema which
117                      # has experimentals make sure and change the path below to appopriate
118                      # directory path.  Example:  CIMPrelim271 is preliminary and has
119                      # experimental classes.  Since experimental classes exist the -aE
120                      # option of the mof compiler needs to be set.
121                      # *****
122 kumpf           1.37 
123                      ifdef PEGASUS_CIM_SCHEMA
124 david.dillard   1.65     CIM_SCHEMA_DIR=$(PEGASUS_ROOT)/Schemas/$(PEGASUS_CIM_SCHEMA)
125 chip            1.76     ifeq ($(findstring $(patsubst CIM%,%,$(patsubst CIMPrelim%,%,$(PEGASUS_CIM_SCHEMA))),1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 271 28),)
126 david.dillard   1.65        CIM_SCHEMA_VER=
127                          else
128                             CIM_SCHEMA_VER=$(patsubst CIM%,%,$(patsubst CIMPrelim%,%,$(PEGASUS_CIM_SCHEMA)))
129                          endif
130 kumpf           1.37 else
131 a.dunfey        1.82     CIM_SCHEMA_DIR=$(PEGASUS_ROOT)/Schemas/CIM29
132                          CIM_SCHEMA_VER=
133 kumpf           1.37 endif
134                      
135                      ifneq (, $(findstring Prelim, $(CIM_SCHEMA_DIR)))
136 david.dillard   1.65     ALLOW_EXPERIMENTAL = -aE
137 gerarda         1.29 else
138 david.dillard   1.65     ALLOW_EXPERIMENTAL =
139 gerarda         1.29 endif
140                      
141 bob             1.5  LEX = flex
142                      
143 mike            1.8  ################################################################################
144                      ##
145                      ## Attempt to include a platform configuration file:
146                      ##
147                      ################################################################################
148                      
149 david.dillard   1.66 PLATFORM_FILE = $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
150                      ifneq ($(wildcard $(PLATFORM_FILE)), )
151                          include $(PLATFORM_FILE)
152                      else
153 david.dillard   1.65   $(error  PEGASUS_PLATFORM environment variable must be set to one of\
154 david.dillard   1.66         the following:$(VALID_PLATFORMS))
155 mike            1.8  endif
156 karl            1.17 
157 karl            1.36 ################################################################################
158                      ##
159                      ##  Set up any platform independent compile conditionals by adding them to
160                      ##  precreated FLAGS parameter.
161 chip            1.76 ##  Assumes that the basic flags have been setup in FLAGS.
162 karl            1.36 ##  Assumes that compile time flags are controlled with -D CLI option.
163                      ##
164                      ################################################################################
165 karl            1.17 
166 karl            1.36 # Setup the conditional compile for client displays.
167 chip            1.76 #
168 karl            1.36 ifdef PEGASUS_CLIENT_TRACE_ENABLE
169 david.dillard   1.65     DEFINES += -DPEGASUS_CLIENT_TRACE_ENABLE
170 karl            1.36 endif
171                      
172 mday            1.40 # do not compile trace code. sometimes it causes problems debugging
173                      ifdef PEGASUS_REMOVE_TRACE
174 david.dillard   1.65     DEFINES += -DPEGASUS_REMOVE_TRACE
175 mday            1.40 endif
176                      
177 chuck           1.47 # PEP 161
178                      # Control whether utf-8 filenames are supported by the repository
179                      ifdef PEGASUS_SUPPORT_UTF8_FILENAME
180 david.dillard   1.65     DEFINES += -DPEGASUS_SUPPORT_UTF8_FILENAME
181 chuck           1.47 
182 david.dillard   1.65     # Control whether utf-8 filenames in the repository are escaped
183                          ifdef PEGASUS_REPOSITORY_ESCAPE_UTF8
184                              DEFINES += -DPEGASUS_REPOSITORY_ESCAPE_UTF8
185                          endif
186 chuck           1.47 endif
187                      
188 kumpf           1.49 #
189                      # PEP 142
190                      # The following flag need to be set to enable
191                      # user group authorization functionality.
192                      #
193                      ifdef PEGASUS_ENABLE_USERGROUP_AUTHORIZATION
194 david.dillard   1.65     DEFINES += -DPEGASUS_ENABLE_USERGROUP_AUTHORIZATION
195 kumpf           1.49 endif
196                      
197 chuck           1.67 #
198                      # PEP 193
199                      # The following flag need to be set to disable
200                      # CQL in indication subscriptions
201                      #
202                      ifdef PEGASUS_DISABLE_CQL
203                          DEFINES += -DPEGASUS_DISABLE_CQL
204                      endif
205                      
206 kumpf           1.68 #
207                      # PEP 186
208                      # Allow override of product name/version/status.  A file
209                      # pegasus/src/Pegasus/Common/ProductVersion.h must exist when this
210                      # flag is defined.
211                      #
212                      ifdef PEGASUS_OVERRIDE_PRODUCT_ID
213                          DEFINES += -DPEGASUS_OVERRIDE_PRODUCT_ID
214                      endif
215                      
216 kumpf           1.71 #
217                      # PEP 197
218                      # Allow the Provider User Context feature to be disabled.
219                      #
220 kumpf           1.74 ifdef PEGASUS_DISABLE_PROV_USERCTXT
221 kumpf           1.71     DEFINES += -DPEGASUS_DISABLE_PROV_USERCTXT
222 kumpf           1.74 else
223                          ifdef PEGASUS_DISABLE_PROV_USERCTXT_REQUESTOR
224                              DEFINES += -DPEGASUS_DISABLE_PROV_USERCTXT_REQUESTOR
225                          endif
226                          ifdef PEGASUS_DISABLE_PROV_USERCTXT_DESIGNATED
227                              DEFINES += -DPEGASUS_DISABLE_PROV_USERCTXT_DESIGNATED
228                          endif
229                          ifdef PEGASUS_DISABLE_PROV_USERCTXT_PRIVILEGED
230                              DEFINES += -DPEGASUS_DISABLE_PROV_USERCTXT_PRIVILEGED
231                          endif
232                          ifdef PEGASUS_DISABLE_PROV_USERCTXT_CIMSERVER
233                              DEFINES += -DPEGASUS_DISABLE_PROV_USERCTXT_CIMSERVER
234                          endif
235                      endif
236 kumpf           1.71 
237 chip            1.76 # PEP 211
238                      # Controls object normalization support.
239                      ifdef PEGASUS_ENABLE_OBJECT_NORMALIZATION
240                          DEFINES += -DPEGASUS_ENABLE_OBJECT_NORMALIZATION
241                      endif
242                      
243 kumpf           1.80 # Allow ExecQuery functionality to be enabled
244                      ifndef PEGASUS_ENABLE_EXECQUERY
245                          DEFINES += -DPEGASUS_DISABLE_EXECQUERY
246                      endif
247                      
248 kumpf           1.49 
249 karl            1.39 # setup function to enable SLP functions in the Pegasus standard compile
250 karl            1.75 # Set the environment varaible PEGASUS_ENABLE_SLP to enable SLP code.
251                      # NOTE. Effective with Bug # 2633 some platforms now enable SLP.
252                      # To see which platforms look for platform make files that set
253 chip            1.76 # the variable PEGASUS_ENABLE_SLP
254 karl            1.39 ifdef PEGASUS_ENABLE_SLP
255 david.dillard   1.65     DEFINES += -DPEGASUS_ENABLE_SLP
256 karl            1.39 endif
257 karl            1.36 
258 karl            1.60 # set PEGASUS_DEBUG into the DEFINES if it exists.
259                      # Note that this flag is the general separator between
260                      # debug compiles and non-debug compiles and controls both
261                      # the use of any debug options on compilers and linkers
262                      # and general debug support that we want to be turned on in
263 chip            1.76 # debug mode.
264 karl            1.60 ifdef PEGASUS_DEBUG
265 david.dillard   1.65     DEFINES += -DPEGASUS_DEBUG
266 karl            1.60 endif
267                      
268 chuck           1.42 # compile in the experimental APIs
269 david.dillard   1.65 DEFINES += -DPEGASUS_USE_EXPERIMENTAL_INTERFACES
270 chuck           1.42 
271 w.white         1.57 # Set compile flag to control compilation of CIMOM statistics
272 karl            1.73 ifdef PEGASUS_DISABLE_PERFINST
273                          FLAGS += -DPEGASUS_DISABLE_PERFINST
274 w.white         1.57 endif
275 kumpf           1.56 
276                      ############################################################
277                      #
278                      # Set any vendor-specific compile flags
279                      #
280                      ############################################################
281                      
282                      ifdef PEGASUS_VENDOR_HP
283 david.dillard   1.65     DEFINES+= -DPEGASUS_VENDOR_HP
284 kumpf           1.56 endif
285                      
286 chip            1.76 
287 karl            1.17 ############################################################
288                      #
289                      # Set up other Make Variables that depend on platform config files
290                      #
291                      ############################################################
292                      
293                      # This is temporary until we end up with a better place to
294                      # put this variable
295                      # Makefiles can do directory remove with
296                      # $(RMREPOSITORY) repositoryname
297                      #
298                      RMREPOSITORY = $(RMDIRHIER)
299                      
300 w.otsuka        1.63 ifdef PEGASUS_USE_RELEASE_CONFIG_OPTIONS
301 david.dillard   1.65     FLAGS += -DPEGASUS_USE_RELEASE_CONFIG_OPTIONS
302 w.otsuka        1.62 endif
303                      
304                      ifdef PEGASUS_USE_RELEASE_DIRS
305 david.dillard   1.65     FLAGS += -DPEGASUS_USE_RELEASE_DIRS
306 w.otsuka        1.62 endif
307 mday            1.27 
308 kumpf           1.64 # Unless otherwise specified, Pegasus libraries go in $(PEGASUS_HOME)/lib
309                      ifndef PEGASUS_DEST_LIB_DIR
310 david.dillard   1.65     PEGASUS_DEST_LIB_DIR = lib
311 kumpf           1.64 endif
312 mday            1.28 
313 gs.keenan       1.77 ifeq ($(OS),VMS)
314                       DEFINES += -DPEGASUS_DEST_LIB_DIR="""$(PEGASUS_DEST_LIB_DIR)"""
315                      else
316                       DEFINES += -DPEGASUS_DEST_LIB_DIR=\"$(PEGASUS_DEST_LIB_DIR)\"
317                      endif
318                      
319 w.otsuka        1.79 ################################################################################
320                      ##
321                      ## Additional build flags passed in through environment variables.
322                      ## These flags are added to the compile/link commands.
323                      ##
324                      ################################################################################
325                      
326                      ifdef PEGASUS_EXTRA_CXX_FLAGS
327                          EXTRA_CXX_FLAGS = $(PEGASUS_EXTRA_CXX_FLAGS)
328                      endif
329                      
330                      ifdef PEGASUS_EXTRA_C_FLAGS
331                          EXTRA_C_FLAGS = $(PEGASUS_EXTRA_C_FLAGS)
332                      endif
333                      
334                      ifdef PEGASUS_EXTRA_LINK_FLAGS
335                          EXTRA_LINK_FLAGS = $(PEGASUS_EXTRA_LINK_FLAGS)
336                      endif
337                      

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2