(file) Return to Makefile CVS log (file) (dir) Up to [Pegasus] / pegasus

  1 karl  1.36 #//%2006////////////////////////////////////////////////////////////////////////
  2 martin 1.31 #//
  3             #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
  4             #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
  5             #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
  6             #// IBM Corp.; EMC Corporation, The Open Group.
  7             #// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
  8             #// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
  9             #// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 10             #// EMC Corporation; VERITAS Software Corporation; The Open Group.
 11 karl   1.36 #// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 12             #// EMC Corporation; Symantec Corporation; The Open Group.
 13 martin 1.31 #//
 14             #// Permission is hereby granted, free of charge, to any person obtaining a copy
 15             #// of this software and associated documentation files (the "Software"), to
 16             #// deal in the Software without restriction, including without limitation the
 17             #// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 18             #// sell copies of the Software, and to permit persons to whom the Software is
 19             #// furnished to do so, subject to the following conditions:
 20             #// 
 21             #// THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 22             #// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 23             #// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 24             #// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 25             #// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 26             #// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 27             #// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 28             #// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 29             #//
 30             #//==============================================================================
 31 karl   1.6  # Pegasus top level make file
 32 jim.wunderlich 1.34 # see the usage rule for options
 33                     
 34 mike           1.1  ROOT = .
 35                     
 36 konrad.r       1.24 include $(ROOT)/env_var.status
 37 mike           1.1  include $(ROOT)/mak/config.mak
 38                     
 39 karl           1.11 # This is a recurse make file
 40 karl           1.6  # Defines subdirectorys to go to recursively
 41                     
 42 mike           1.3  # DIRS = src cgi
 43 mike           1.43.2.1 
 44                         ifeq ($(OS_TYPE),vxworks)
 45 mike           1.43.2.2     DIRS = \
 46                                 src/Pegasus/Common \
 47                                 src/Pegasus/Common/tests \
 48                                 src/Pegasus/Config \
 49                                 src/Pegasus/Query/QueryCommon \
 50                                 src/Pegasus/WQL \
 51                                 src/Pegasus/CQL \
 52                                 src/Pegasus/Query/QueryExpression \
 53                                 src/Pegasus/Security/UserManager \
 54                                 src/Service \
 55                                 src/Pegasus/Provider \
 56                                 src/Pegasus/Repository \
 57                                 src/Pegasus/Server/ProviderRegistrationManager \
 58                                 src/Pegasus/ProviderManager2 \
 59                                 src/Pegasus/ProviderManager2/Default \
 60                                 src/Pegasus/ExportServer \
 61                                 src/Pegasus/ProviderManagerService \
 62                                 src/Pegasus/Security/Authentication \
 63                                 src/Pegasus/HandlerService \
 64                                 src/Pegasus/IndicationService \
 65                                 src/Pegasus/ControlProviders/InteropProvider \
 66 mike           1.43.2.2         src/Pegasus/ControlProviders/Statistic \
 67                                 src/Pegasus/ControlProviders/QueryCapabilitiesProvider \
 68                                 src/Pegasus/ControlProviders/ProviderRegistrationProvider \
 69                                 src/Pegasus/ControlProviders/NamespaceProvider \
 70                                 src/Pegasus/ControlProviders/ConfigSettingProvider \
 71                                 src/Pegasus/ControlProviders/UserAuthProvider \
 72                                 src/Pegasus/Server \
 73 mike           1.43.2.5         src/Server
 74 mike           1.43.2.1 else
 75                             DIRS = src test Schemas
 76                         endif
 77 mike           1.1      
 78 karl           1.11     # Define the inclusion of the recurse.mak file to execute the next
 79                         # level of makefiles defined by the DIRS variable
 80 karl           1.6      
 81 mike           1.43.2.1 ifeq ($(OS_TYPE),vxworks)
 82                             defaultrule: all
 83                         else
 84                             defaultrule: all setupdevserver
 85                         endif
 86 jim.wunderlich 1.34     
 87 mike           1.1      include $(ROOT)/mak/recurse.mak
 88                         
 89 jim.wunderlich 1.34     .PHONY: FORCE
 90 jim.wunderlich 1.32     
 91 jim.wunderlich 1.34     FORCE:
 92 jim.wunderlich 1.32     
 93 jim.wunderlich 1.34     usage: FORCE
 94                         	$(USAGE)
 95                         	$(USAGE)"Makefile targets:"
 96                         	$(USAGE)
 97                         	$(USAGE)"Recursive rules - These are the primatives that traverse the tree"
 98                         	$(USAGE)"invoking the specified command in each subdirectory directory."
 99                         	$(USAGE)"NOTE: all is special, it specifies no target and therefore invokes"
100                         	$(USAGE)"the default rule for that directory."
101                         	$(USAGE)"all                 - recursive DEFAULT rule"
102                         	$(USAGE)"clean               - recursive clean"
103                         	$(USAGE)"depend              - buildmu recursive depend"
104                         	$(USAGE)"messages            - rootbundle recursive messages"
105                         	$(USAGE)"tests               - recursive tests"
106                         	$(USAGE)"poststarttests      - recursive poststarttests"
107                         	$(USAGE) 
108                         	$(USAGE)"Combinational rules - Combine other rules to achieve results"
109                         	$(USAGE)"DEFAULT RULE        - all, setupdevserver"
110                         	$(USAGE)"new                 - clean repositoryclean"
111                         	$(USAGE)"build               - depend all, setupdevserver"
112                         	$(USAGE)"world               - build unittests servertests"
113                         	$(USAGE)
114 jim.wunderlich 1.34     	$(USAGE)"Functional rules - Other rules to achieve specified results"
115 jim.wunderlich 1.35     	$(USAGE)"clobber             -removes objects built during compile"
116                         	$(USAGE)"                     specifically the following directories are removed:"
117                         	$(USAGE)"                      $(PEGASUS_HOME)/bin"
118                         	$(USAGE)"                      $(PEGASUS_HOME)/lib"
119                         	$(USAGE)"                      $(PEGASUS_HOME)/obj"
120 jim.wunderlich 1.34     	$(USAGE)"buildmu             - builds the mu utility"
121                         	$(USAGE)"setupdevserver      - setup the development server env"
122                         	$(USAGE)"cleandevserver      - cleans the development server env"
123 karl           1.39     	$(USAGE)"repository          - builds the base repository. Does not remove other"
124                         	$(USAGE)"                      namespaces than the base namespaces."  
125 jim.wunderlich 1.34     	$(USAGE)"testrepository      - builds items for the test suites into the repository"
126                         	$(USAGE)"removetestrepository- removes test items from the repository"
127 karl           1.39     	$(USAGE)"repositoryclean     - removes the complete repository"
128 jim.wunderlich 1.34     	$(USAGE)"listplatforms       - List all valid platforms"
129                         	$(USAGE)
130                         	$(USAGE)"Test rules (accessable here but implemented in TestMakefile)"
131                         	$(USAGE)"alltests            - unittests and servertests"
132                         	$(USAGE)"unittests           - runs the unit functional test"
133                         	$(USAGE)"servertests         - runs basic server tests"
134 jim.wunderlich 1.35     	$(USAGE)"perftests           - runs basic server performance tests"
135 jim.wunderlich 1.34     	$(USAGE)"standardtests       - runs server extended tests"
136                         	$(USAGE)"testusage           - TestMakefile usage"
137                         	$(USAGE)"testusage2          - TestMakefile usage2"
138 j.alex         1.37     	$(USAGE)"stresstests         - Runs the default stresstests"
139 jim.wunderlich 1.34     	$(USAGE)
140                         	$(USAGE)"--------------------"
141                         	$(USAGE)"Quick start:"
142                         	$(USAGE)"  After checkout of new tree:"
143                         	$(USAGE)"  use \"make listplatforms\" to view a list of platforms"
144                         	$(USAGE)"  set PEGASUS_PLATFORM=<your platofrm>"
145                         	$(USAGE)"  set PEGASUS_ROOT=<location of your pegasus source>"
146                         	$(USAGE)"  set PEGASUS_HOME=<build output location"
147 kumpf          1.42     	$(USAGE)"  make world"
148 jim.wunderlich 1.34     	$(USAGE)
149                         	$(USAGE)"  This will build everthing with a default configuration"
150 kumpf          1.42     	$(USAGE)"  and run the automated tests."
151 jim.wunderlich 1.34     	$(USAGE)
152                         	$(USAGE)"--------------------"
153                         	$(USAGE)"Examples:"
154 kumpf          1.42     	$(USAGE)"  After \"cvs checkout\" of new tree:    make world"
155 jim.wunderlich 1.34     	$(USAGE)
156                         	$(USAGE)"  After changes to include files:      make"
157                         	$(USAGE)
158                         	$(USAGE)"  After changes to the files included: make build"
159                         	$(USAGE)
160 kumpf          1.42     	$(USAGE)"  After \"cvs update\" or to start over: make new world" 
161 jim.wunderlich 1.34     	$(USAGE)
162                         
163                         listplatforms: FORCE
164                         	$(USAGE)
165                         	$(USAGE)"The $(words $(VALID_PLATFORMS)) valid platforms are:"
166                         	$(USAGE)" $(foreach w, $(VALID_PLATFORMS), " $w ")"
167                         	$(USAGE)
168                         	$(USAGE)
169                         
170                         #########################################################################
171                         # This section defines any prerequisites that are required by the 
172                         # recursive rules.
173                         #
174                         # NOTE: You can add prerequisties for the recursive rules but you cannot
175                         #       add any commands to run as part of the rule. You can define them 
176                         #       and make will quietly ignore them and they will not be run either
177                         #       before or after the recursive rule. 
178                         #
179                         #
180                         messages: rootbundle
181 karl           1.6      
182 jim.wunderlich 1.34     depend: buildmu
183 kumpf          1.18     
184 jim.wunderlich 1.34     #########################################################################
185                         # This section defines combinational rules
186                         #
187 jim.wunderlich 1.32     #-----------------------
188 jim.wunderlich 1.34     # build target: builds all source
189 jim.wunderlich 1.32     #
190 jim.wunderlich 1.34     build: depend all setupdevserver
191 jim.wunderlich 1.32     
192 jim.wunderlich 1.34     #------------------------
193                         # rebuild target is being deprecated instead use "make new build"
194                         #
195                         rebuild_msg: FORCE
196                         	@$(ECHO) "==============================================================================="
197                         	@$(ECHO) "Makefile: The rebuild target is being deprecated." 
198                         	@$(ECHO) "          Use \"make usage\" for a description of the usage model."
199 kumpf          1.42     	@$(ECHO) "          Consider using \"make new world\" ."
200 jim.wunderlich 1.34     	@$(ECHO) "          Invoking the old rebuild rule now."
201                         	@$(ECHO) "==============================================================================="
202                         
203                         rebuild: rebuild_msg shortsleep new build s_unittests repository
204 jim.wunderlich 1.32     
205                         #-----------------------
206 jim.wunderlich 1.34     # new target: cleans everthing
207                         #
208                         # This can be combined on the command line with other rules like:
209 jim.wunderlich 1.32     #
210 jim.wunderlich 1.34     # make new build
211                         # make new world 
212 jim.wunderlich 1.32     
213 jim.wunderlich 1.34     new: clean repositoryclean
214 jim.wunderlich 1.32     
215                         #-----------------------
216 jim.wunderlich 1.34     # world targets: builds everything and dependent on which target may do testing
217 jim.wunderlich 1.32     #
218                         #       Typically used after a fresh checkout from CVS 
219 jim.wunderlich 1.34     
220                         world: build s_unittests servertests
221                         
222                         
223                         ############################
224                         #
225                         # rules defined in TestMakefile that are repeated here for convenience
226 jim.wunderlich 1.32     #
227 jim.wunderlich 1.34     shortsleep: FORCE
228                         	@$(MAKE)  -f TestMakefile shortsleep
229                         
230                         servertests: FORCE
231                         	@ $(MAKE) -f TestMakefile servertests
232                         
233 jim.wunderlich 1.35     perftests: FORCE
234                         	@ $(MAKE) -f TestMakefile perftests
235                         
236 jim.wunderlich 1.34     s_unittests: FORCE
237                         	@ $(MAKE) -f TestMakefile -s unittests
238                         
239                         unittests: FORCE
240                         	@ $(MAKE) -f TestMakefile unittests
241                         
242                         standardtests: FORCE
243                         	@ $(MAKE) -f TestMakefile standardtests
244                         
245                         alltests: FORCE
246                         	@ $(MAKE) -f TestMakefile alltests
247                         
248                         testusage: FORCE
249                         	@ $(MAKE) -f TestMakefile usage
250 jim.wunderlich 1.32     
251 jim.wunderlich 1.34     testusage2: FORCE
252                         	@ $(MAKE) -f TestMakefile usage2
253 mike           1.1      
254 j.alex         1.37     stresstests:
255                         	@$(ECHO) "Running OpenPegasus StressTests"
256                         	@$(MAKE)  -f TestMakefile stresstests
257                         	@$(ECHO) "+++++ OpenPegasus StressTests complete"
258 jim.wunderlich 1.35     
259 jim.wunderlich 1.34     ##########################################################################
260                         #
261                         # This section defines functional rules
262                         #
263 jim.wunderlich 1.32     #---------------------
264                         # buildmu target: build mu the make utility that among other things
265                         #                 includes depend
266                         buildmu: FORCE
267                         	$(MKDIRHIER) $(BIN_DIR)
268                         	$(MAKE) --directory=$(PEGASUS_ROOT)/src/utils/mu -f Makefile
269                         
270                         #----------------------
271                         # setupdevserver and cleandevserver are used to setup and clear the 
272                         # server configuration files needed to run the server in a development
273                         # environment. 
274                         #
275                         setupdevserver: FORCE
276                         	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run
277                         	@$(ECHO) "PEGASUS Development Server Runtime Environment configured "
278                         
279                         cleandevserver: FORCE
280                         	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run_clean
281 karl           1.6      
282 jim.wunderlich 1.35     clobber: FORCE
283                         	- $(RMDIRHIER) $(PEGASUS_HOME)/bin
284                         	- $(RMDIRHIER) $(PEGASUS_HOME)/lib
285                         	- $(RMDIRHIER) $(PEGASUS_HOME)/obj
286                         
287 jim.wunderlich 1.34     
288                         #---------------------
289 karl           1.39     # The repository Target removes and rebuilds the base repository. It
290                         # does not remove all possible namespaces.  See
291                         # Schemas/Pegasus/Makefile for details. The repository clean has the
292                         # same limitation
293 mike           1.4      
294 kumpf          1.25     # Note: Arguments must be quoted to preserve upper case characters in VMS.
295 kumpf          1.18     repository: FORCE
296 kumpf          1.25     	@ $(MAKE) "-SC" Schemas/Pegasus repository
297 mike           1.9      
298 jim.wunderlich 1.29     repositoryclean: FORCE
299                         	@ $(RMREPOSITORY) $(REPOSITORY_ROOT)
300                         
301 kumpf          1.18     repositoryServer: FORCE
302 kumpf          1.25     	@ $(MAKE) "-SC" Schemas/Pegasus repositoryServer
303 kumpf          1.17     
304 kumpf          1.18     testrepository: FORCE
305 kumpf          1.25     	@ $(MAKE) "-SC" src/Providers/sample/Load repository
306                         	@ $(MAKE) "-SC" test/wetest repository
307                         	@ $(MAKE) "-SC" src/Clients/benchmarkTest/Load repository
308 chuck          1.26     	@ $(MAKE) "-SC" src/Pegasus/CQL/CQLCLI repository
309 chuck          1.27     	@ $(MAKE) "-SC" src/Pegasus/Query/QueryExpression/tests repository
310 kumpf          1.28     	@ $(MAKE) "-SC" src/Providers/TestProviders/Load repository
311 kumpf          1.43     ifndef PEGASUS_DISABLE_CQL
312 a.arora        1.30     	@ $(MAKE) "-SC" src/Pegasus/ControlProviders/QueryCapabilitiesProvider/tests repository
313 kumpf          1.43     endif
314 marek          1.38     ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
315                         	@ $(MAKE) "-SC" src/Pegasus/ProviderManager2/JMPI/org/pegasus/jmpi/tests repository
316                         endif
317 w.otsuka       1.40     	@ $(MAKE) --directory=$(PEGASUS_ROOT)/src/Clients/cimsub/tests/testscript \
318                                     -f Makefile repository
319 kumpf          1.17     
320 kumpf          1.18     testrepositoryServer: FORCE
321 kumpf          1.25     	@ $(MAKE) "-SC" src/Providers/sample/Load repositoryServer
322                         	@ $(MAKE) "-SC" test/wetest repositoryServer
323                         	@ $(MAKE) "-SC" src/Clients/benchmarkTest/Load repositoryServer
324 chuck          1.26     	@ $(MAKE) "-SC" src/Pegasus/CQL/CQLCLI repositoryServer
325 chuck          1.27     	@ $(MAKE) "-SC" src/Pegasus/Query/QueryExpression/tests repositoryServer
326 kumpf          1.28     	@ $(MAKE) "-SC" src/Providers/TestProviders/Load repositoryServer
327 kumpf          1.43     ifndef PEGASUS_DISABLE_CQL
328 a.arora        1.30     	@ $(MAKE) "-SC" src/Pegasus/ControlProviders/QueryCapabilitiesProvider/tests repositoryServer
329 kumpf          1.43     endif
330 marek          1.38     ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
331                         	@ $(MAKE) "-SC" src/Pegasus/ProviderManager2/JMPI/org/pegasus/jmpi/tests repositoryServer
332                         endif
333 w.otsuka       1.40     	@ $(MAKE) --directory=$(PEGASUS_ROOT)/src/Clients/cimsub/tests/testscript \
334                                     -f Makefile repositoryServer
335 kumpf          1.16     
336 kumpf          1.18     removetestrepository: FORCE
337 kumpf          1.25     	@ $(MAKE) "-SC" src/Providers/sample/Load removerepository
338                         	@ $(MAKE) "-SC" test/wetest removerepository
339                         	@ $(MAKE) "-SC" src/Clients/benchmarkTest/Load removerepository
340 kumpf          1.28     	@ $(MAKE) "-SC" src/Providers/TestProviders/Load removerepository
341 w.otsuka       1.40     	@ $(MAKE) "-SC" src/Clients/cimsub/tests/testscript removerepository
342 karl           1.15     
343 konrad.r       1.24     config:
344                         	@ $(ROOT)/SetConfig_EnvVar
345                         
346 humberto       1.21     rootbundle: 
347                         	$(MAKE) --directory=$(PEGASUS_ROOT)/src/utils/cnv2rootbundle -f Makefile

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2