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

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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2