(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 mike  1.2 ifdef PEGASUS_HOME
  9             HOME_DIR = $(subst \,/,$(PEGASUS_HOME))
 10 mike  1.1 else
 11 mike  1.2   ERROR = pegasus_home_undefined
 12           pegasus_home_undefined:
 13 mike  1.4 	@ echo PEGASUS_HOME environment variable undefined
 14 mike  1.2 	@ exit 1
 15 mike  1.1 endif
 16           
 17 karl  1.18 ifdef PEGASUS_ROOT
 18                ROOT =  $(subst \,/,$(PEGASUS_ROOT))
 19            else
 20                ERROR = pegasus_root_undefined
 21            pegasus_root_undefined:
 22            	@ echo PEGASUS_ROOT environment variable undefined
 23            	@ exit 1
 24            endif
 25            
 26 kumpf 1.21 ifdef PEGASUS_TMP
 27              TMP_DIR = $(subst \,/,$(PEGASUS_TMP))
 28            else
 29              TMP_DIR = .
 30            endif
 31            
 32 kumpf 1.26 ifdef PEGASUS_DISPLAYCONSUMER_DIR
 33              DISPLAYCONSUMER_DIR = $(subst \,/,$(PEGASUS_DISPLAYCONSUMER_DIR))
 34            else
 35              DISPLAYCONSUMER_DIR = $(PEGASUS_HOME)
 36            endif
 37            
 38 mike  1.14 VALID_PLATFORMS = \
 39                WIN32_IX86_MSVC \
 40                LINUX_IX86_GNU \
 41 kumpf 1.19     LINUX_IA64_GNU \
 42 mike  1.14     AIX_RS_IBMCXX \
 43                HPUX_PARISC_ACC \
 44 kumpf 1.22     HPUX_IA64_ACC \
 45 mike  1.15     TRU64_ALPHA_DECCXX \
 46 mike  1.16     SOLARIS_SPARC_GNU \
 47                ZOS_ZSERIES_IBM \
 48                NSK_NONSTOP_NMCPLUS  
 49 mike  1.8  
 50            ifndef PEGASUS_PLATFORM
 51              ERROR = pegasus_platform_undefined
 52            pegasus_platform_undefined:
 53            	@ echo PEGASUS_PLATFORM environment variable undefined. Please set to\
 54            	    one of the following: $(VALID_PLATFORMS)
 55            	@ exit 1
 56            endif
 57            
 58 mike  1.1  ################################################################################
 59            
 60 kumpf 1.22 OBJ_DIR = $(HOME_DIR)/obj/$(DIR)
 61            BIN_DIR = $(HOME_DIR)/bin
 62            LIB_DIR = $(HOME_DIR)/lib
 63            
 64            # define the location for the repository
 65            REPOSITORY_DIR = $(HOME_DIR)
 66            REPOSITORY_ROOT = $(REPOSITORY_DIR)/repository
 67 mike  1.1  
 68 kumpf 1.23 # The two variables, CIM_SCHEMA_DIR and CIM_SCHEMA_VER,
 69            # are used to control the version of the CIM Schema 
 70            # loaded into the Pegasus Internal, InterOp,
 71            # root/cimv2 and various test namespaces.
 72            #
 73            # Update the following two environment variables to 
 74            # change the version.
 75            
 76 kumpf 1.30 CIM_SCHEMA_DIR=$(PEGASUS_ROOT)/Schemas/CIM27
 77 kumpf 1.25 CIM_SCHEMA_VER=27
 78 kumpf 1.23 
 79 gerarda 1.29 # ***** CIM_SCHEMA_DIR INFO ****
 80              # If CIM_SCHEMA_DIR changes to use a preliminary schema which
 81              # has experimentals make sure and change the path below to appopriate
 82              # directory path.  Example:  CIMPrelim271 is preliminary and has
 83              # experimental classes.  Since experimental classes exist the -aE
 84              # option of the mof compiler needs to be set.
 85              # *****
 86              ifeq ($(CIM_SCHEMA_DIR), $(PEGASUS_ROOT)/Schemas/CIMPrelim271)
 87              ALLOW_EXPERIMENTAL = -aE
 88              else
 89 gerarda 1.31 ALLOW_EXPERIMENTAL =
 90 gerarda 1.29 endif
 91              
 92 bob     1.5  LEX = flex
 93              
 94 mike    1.8  ################################################################################
 95              ##
 96              ## Attempt to include a platform configuration file:
 97              ##
 98              ################################################################################
 99              
100 mike    1.9  ifeq ($(PEGASUS_PLATFORM),WIN32_IX86_MSVC)
101                include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
102 mike    1.8    FOUND = true
103              endif
104              
105 mike    1.9  ifeq ($(PEGASUS_PLATFORM),LINUX_IX86_GNU)
106 kumpf   1.19   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
107                FOUND = true
108              endif
109              
110              ifeq ($(PEGASUS_PLATFORM),LINUX_IA64_GNU)
111 mike    1.12   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
112                FOUND = true
113              endif
114              
115              ifeq ($(PEGASUS_PLATFORM),AIX_RS_IBMCXX)
116 mike    1.13   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
117                FOUND = true
118              endif
119              
120              ifeq ($(PEGASUS_PLATFORM),HPUX_PARISC_ACC)
121 kumpf   1.22   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
122                FOUND = true
123              endif
124              
125              ifeq ($(PEGASUS_PLATFORM),HPUX_IA64_ACC)
126 mike    1.14   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
127                FOUND = true
128              endif
129              
130              ifeq ($(PEGASUS_PLATFORM),TRU64_ALPHA_DECCXX)
131 mike    1.15   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
132                FOUND = true
133              endif
134              
135              ifeq ($(PEGASUS_PLATFORM),SOLARIS_SPARC_GNU)
136 mike    1.9    include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
137 mike    1.8    FOUND = true
138 mike    1.16 endif
139              
140              ifeq ($(PEGASUS_PLATFORM),ZOS_ZSERIES_IBM)
141                 include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
142                 FOUND = true
143              endif
144              
145              ifeq ($(PEGASUS_PLATFORM),NSK_NONSTOP_NMCPLUS)
146                 include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
147                 FOUND = true
148 mike    1.8  endif
149              
150              ifneq ($(FOUND),true)
151                ERROR = pegasus_unknown_platform
152              pegasus_unknown_platform:
153              	@ echo PEGASUS_PLATFORM environment variable must be set to one of\
154              	    the following: $(VALID_PLATFORMS)
155              	@ exit 1
156              endif
157 karl    1.17 
158              
159              ############################################################
160              #
161              # Set up other Make Variables that depend on platform config files
162              #
163              ############################################################
164              
165              # This is temporary until we end up with a better place to
166              # put this variable
167              # Makefiles can do directory remove with
168              # $(RMREPOSITORY) repositoryname
169              #
170              RMREPOSITORY = $(RMDIRHIER)
171              
172 mday    1.27 
173 mday    1.28 
174 mday    1.27 

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2