(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 nagaraj.gr     1.56 	$(USAGE)"buildclientlibs     - Build only the Client and Common libraries"
 90 jim.wunderlich 1.34 	$(USAGE)"setupdevserver      - setup the development server env"
 91                     	$(USAGE)"cleandevserver      - cleans the development server env"
 92 karl           1.39 	$(USAGE)"repository          - builds the base repository. Does not remove other"
 93 kumpf          1.52 	$(USAGE)"                      namespaces than the base namespaces."
 94 jim.wunderlich 1.34 	$(USAGE)"testrepository      - builds items for the test suites into the repository"
 95 karl           1.39 	$(USAGE)"repositoryclean     - removes the complete repository"
 96 jim.wunderlich 1.34 	$(USAGE)"listplatforms       - List all valid platforms"
 97                     	$(USAGE)
 98                     	$(USAGE)"Test rules (accessable here but implemented in TestMakefile)"
 99                     	$(USAGE)"alltests            - unittests and servertests"
100                     	$(USAGE)"unittests           - runs the unit functional test"
101                     	$(USAGE)"servertests         - runs basic server tests"
102 jim.wunderlich 1.35 	$(USAGE)"perftests           - runs basic server performance tests"
103 jim.wunderlich 1.34 	$(USAGE)"standardtests       - runs server extended tests"
104                     	$(USAGE)"testusage           - TestMakefile usage"
105                     	$(USAGE)"testusage2          - TestMakefile usage2"
106 j.alex         1.37 	$(USAGE)"stresstests         - Runs the default stresstests"
107 jim.wunderlich 1.34 	$(USAGE)
108                     	$(USAGE)"--------------------"
109                     	$(USAGE)"Quick start:"
110                     	$(USAGE)"  After checkout of new tree:"
111                     	$(USAGE)"  use \"make listplatforms\" to view a list of platforms"
112                     	$(USAGE)"  set PEGASUS_PLATFORM=<your platofrm>"
113                     	$(USAGE)"  set PEGASUS_ROOT=<location of your pegasus source>"
114                     	$(USAGE)"  set PEGASUS_HOME=<build output location"
115 kumpf          1.42 	$(USAGE)"  make world"
116 jim.wunderlich 1.34 	$(USAGE)
117                     	$(USAGE)"  This will build everthing with a default configuration"
118 kumpf          1.42 	$(USAGE)"  and run the automated tests."
119 jim.wunderlich 1.34 	$(USAGE)
120                     	$(USAGE)"--------------------"
121                     	$(USAGE)"Examples:"
122 kumpf          1.42 	$(USAGE)"  After \"cvs checkout\" of new tree:    make world"
123 jim.wunderlich 1.34 	$(USAGE)
124                     	$(USAGE)"  After changes to include files:      make"
125                     	$(USAGE)
126                     	$(USAGE)"  After changes to the files included: make build"
127                     	$(USAGE)
128 kumpf          1.52 	$(USAGE)"  After \"cvs update\" or to start over: make new world"
129 jim.wunderlich 1.34 	$(USAGE)
130                     
131                     listplatforms: FORCE
132                     	$(USAGE)
133                     	$(USAGE)"The $(words $(VALID_PLATFORMS)) valid platforms are:"
134                     	$(USAGE)" $(foreach w, $(VALID_PLATFORMS), " $w ")"
135                     	$(USAGE)
136                     	$(USAGE)
137                     
138                     #########################################################################
139 kumpf          1.52 # This section defines any prerequisites that are required by the
140 jim.wunderlich 1.34 # recursive rules.
141                     #
142                     # NOTE: You can add prerequisties for the recursive rules but you cannot
143 kumpf          1.52 #       add any commands to run as part of the rule. You can define them
144 jim.wunderlich 1.34 #       and make will quietly ignore them and they will not be run either
145 kumpf          1.52 #       before or after the recursive rule.
146 jim.wunderlich 1.34 #
147                     #
148                     messages: rootbundle
149 karl           1.6  
150 jim.wunderlich 1.34 depend: buildmu
151 kumpf          1.18 
152 jim.wunderlich 1.34 #########################################################################
153                     # This section defines combinational rules
154                     #
155 jim.wunderlich 1.32 #-----------------------
156 jim.wunderlich 1.34 # build target: builds all source
157 jim.wunderlich 1.32 #
158 anusha.kandepu 1.55 build: cimprovagt32depend cimprovagt32 depend renameinterop all setupdevserver
159 jim.wunderlich 1.32 
160 jim.wunderlich 1.34 #------------------------
161                     # rebuild target is being deprecated instead use "make new build"
162                     #
163                     rebuild_msg: FORCE
164                     	@$(ECHO) "==============================================================================="
165 kumpf          1.52 	@$(ECHO) "Makefile: The rebuild target is being deprecated."
166 jim.wunderlich 1.34 	@$(ECHO) "          Use \"make usage\" for a description of the usage model."
167 kumpf          1.42 	@$(ECHO) "          Consider using \"make new world\" ."
168 jim.wunderlich 1.34 	@$(ECHO) "          Invoking the old rebuild rule now."
169                     	@$(ECHO) "==============================================================================="
170                     
171                     rebuild: rebuild_msg shortsleep new build s_unittests repository
172 jim.wunderlich 1.32 
173                     #-----------------------
174 jim.wunderlich 1.34 # new target: cleans everthing
175                     #
176                     # This can be combined on the command line with other rules like:
177 jim.wunderlich 1.32 #
178 jim.wunderlich 1.34 # make new build
179 kumpf          1.52 # make new world
180 jim.wunderlich 1.32 
181 s.kodali       1.54 new: cimprovagt32clean clean repositoryclean
182 jim.wunderlich 1.32 
183                     #-----------------------
184 jim.wunderlich 1.34 # world targets: builds everything and dependent on which target may do testing
185 jim.wunderlich 1.32 #
186 kumpf          1.52 #       Typically used after a fresh checkout from CVS
187 jim.wunderlich 1.34 
188                     world: build s_unittests servertests
189                     
190 s.kodali       1.54 ############################
191                     #
192                     # rules for building 32 bit provider agent
193                     #
194                     cimprovagt32depend: FORCE
195                     ifdef PEGASUS_PLATFORM_FOR_32BIT_PROVIDER_SUPPORT
196                     	$(MAKE) --directory=$(ROOT) -f Makefile.cimprovagt32 depend
197                     endif
198                     cimprovagt32: FORCE
199                     ifdef PEGASUS_PLATFORM_FOR_32BIT_PROVIDER_SUPPORT
200                     	$(MAKE) --directory=$(ROOT) -f Makefile.cimprovagt32
201                     endif
202                     
203                     cimprovagt32clean: FORCE
204                     ifdef PEGASUS_PLATFORM_FOR_32BIT_PROVIDER_SUPPORT
205                     	$(MAKE) --directory=$(ROOT) -f Makefile.cimprovagt32 clean
206                     endif
207 jim.wunderlich 1.34 
208                     ############################
209                     #
210                     # rules defined in TestMakefile that are repeated here for convenience
211 jim.wunderlich 1.32 #
212 jim.wunderlich 1.34 shortsleep: FORCE
213                     	@$(MAKE)  -f TestMakefile shortsleep
214                     
215                     servertests: FORCE
216                     	@ $(MAKE) -f TestMakefile servertests
217                     
218 jim.wunderlich 1.35 perftests: FORCE
219                     	@ $(MAKE) -f TestMakefile perftests
220                     
221 jim.wunderlich 1.34 s_unittests: FORCE
222                     	@ $(MAKE) -f TestMakefile -s unittests
223                     
224                     unittests: FORCE
225                     	@ $(MAKE) -f TestMakefile unittests
226                     
227                     standardtests: FORCE
228                     	@ $(MAKE) -f TestMakefile standardtests
229                     
230                     alltests: FORCE
231                     	@ $(MAKE) -f TestMakefile alltests
232                     
233                     testusage: FORCE
234                     	@ $(MAKE) -f TestMakefile usage
235 jim.wunderlich 1.32 
236 jim.wunderlich 1.34 testusage2: FORCE
237                     	@ $(MAKE) -f TestMakefile usage2
238 mike           1.1  
239 j.alex         1.37 stresstests:
240                     	@$(ECHO) "Running OpenPegasus StressTests"
241                     	@$(MAKE)  -f TestMakefile stresstests
242                     	@$(ECHO) "+++++ OpenPegasus StressTests complete"
243 jim.wunderlich 1.35 
244 jim.wunderlich 1.34 ##########################################################################
245                     #
246                     # This section defines functional rules
247                     #
248 jim.wunderlich 1.32 #---------------------
249                     # buildmu target: build mu the make utility that among other things
250 karl           1.49 # includes a depend implementation. This is a separate target because
251                     # it must be build before anything else and before the depend target is used
252                     # on some platforms. Note that mu is not used on all platforms.
253 kumpf          1.52 #
254 jim.wunderlich 1.32 buildmu: FORCE
255                     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/utils/mu -f Makefile
256                     
257 anusha.kandepu 1.55 ##########################################################################
258                     #
259                     # renameinterop: This is with regard to PEP304, build time option.
260                     # There are many test cases and result files where namespace name
261                     # root/PG_InterOp is hardcoded. So this searches for root/PG_InterOp
262                     # and changes that to "interop" or "root/interop".
263                     #
264                     # This uses mu replace internally. The original files are all saved as
265                     # filename.save. These file can be restored by running 
266                     # make -f Makefile.interop restore
267                     #
268                     renameinterop: buildmu
269                     ifeq ($(PEGASUS_INTEROP_NAMESPACE),root/interop)
270                     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile.interop replace
271                     endif
272                     ifeq ($(PEGASUS_INTEROP_NAMESPACE),interop)
273                     	$(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile.interop replace
274                     endif
275                     
276 nagaraj.gr     1.56 # buildclientlibs: The libpegclient depends on libpegcommon library.
277                     # This build target can be used to build just these two libraries. 
278                     # With this target, SLP support for clients is not enabled.
279                     #
280                     
281                     buildclientlibs: FORCE
282                     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Common -f Makefile
283                     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Client -f Makefile
284                     
285 jim.wunderlich 1.32 #----------------------
286 kumpf          1.52 # setupdevserver and cleandevserver are used to setup and clear the
287 jim.wunderlich 1.32 # server configuration files needed to run the server in a development
288 kumpf          1.52 # environment.
289 jim.wunderlich 1.32 #
290                     setupdevserver: FORCE
291                     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run
292                     	@$(ECHO) "PEGASUS Development Server Runtime Environment configured "
293                     
294                     cleandevserver: FORCE
295                     	$(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run_clean
296 karl           1.6  
297 jim.wunderlich 1.35 clobber: FORCE
298                     	- $(RMDIRHIER) $(PEGASUS_HOME)/bin
299                     	- $(RMDIRHIER) $(PEGASUS_HOME)/lib
300                     	- $(RMDIRHIER) $(PEGASUS_HOME)/obj
301                     
302 jim.wunderlich 1.34 
303                     #---------------------
304 kumpf          1.48 # The repository target removes the entire repository and rebuilds the Pegasus
305                     # namespaces.  The repositoryServer target does not remove the repository
306                     # before building the Pegasus namespaces.  (The repositoryServer target in
307                     # TestMakefile *does* remove the repository first.)
308 mike           1.4  
309 kumpf          1.25 # Note: Arguments must be quoted to preserve upper case characters in VMS.
310 kumpf          1.48 repository: repositoryclean
311 kumpf          1.25 	@ $(MAKE) "-SC" Schemas/Pegasus repository
312 mike           1.9  
313 jim.wunderlich 1.29 repositoryclean: FORCE
314                     	@ $(RMREPOSITORY) $(REPOSITORY_ROOT)
315                     
316 kumpf          1.18 repositoryServer: FORCE
317 kumpf          1.25 	@ $(MAKE) "-SC" Schemas/Pegasus repositoryServer
318 kumpf          1.17 
319 kumpf          1.48 #---------------------
320                     # The testrepository and testrepositoryServer targets build the Pegasus test
321                     # namespaces.  A pre-existing repository is not removed.
322                     
323 kumpf          1.18 testrepository: FORCE
324 kumpf          1.25 	@ $(MAKE) "-SC" src/Providers/sample/Load repository
325                     	@ $(MAKE) "-SC" test/wetest repository
326                     	@ $(MAKE) "-SC" src/Clients/benchmarkTest/Load repository
327 chuck          1.26 	@ $(MAKE) "-SC" src/Pegasus/CQL/CQLCLI repository
328 chuck          1.27 	@ $(MAKE) "-SC" src/Pegasus/Query/QueryExpression/tests repository
329 kumpf          1.28 	@ $(MAKE) "-SC" src/Providers/TestProviders/Load repository
330 karl           1.44 ifeq ($(PEGASUS_ENABLE_CQL),true)
331 a.arora        1.30 	@ $(MAKE) "-SC" src/Pegasus/ControlProviders/QueryCapabilitiesProvider/tests repository
332 kumpf          1.43 endif
333 marek          1.38 ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
334                     	@ $(MAKE) "-SC" src/Pegasus/ProviderManager2/JMPI/org/pegasus/jmpi/tests repository
335                     endif
336 w.otsuka       1.40 	@ $(MAKE) --directory=$(PEGASUS_ROOT)/src/Clients/cimsub/tests/testscript \
337                                 -f Makefile repository
338 kumpf          1.17 
339 kumpf          1.18 testrepositoryServer: FORCE
340 kumpf          1.25 	@ $(MAKE) "-SC" src/Providers/sample/Load repositoryServer
341                     	@ $(MAKE) "-SC" test/wetest repositoryServer
342                     	@ $(MAKE) "-SC" src/Clients/benchmarkTest/Load repositoryServer
343 chuck          1.26 	@ $(MAKE) "-SC" src/Pegasus/CQL/CQLCLI repositoryServer
344 chuck          1.27 	@ $(MAKE) "-SC" src/Pegasus/Query/QueryExpression/tests repositoryServer
345 kumpf          1.28 	@ $(MAKE) "-SC" src/Providers/TestProviders/Load repositoryServer
346 karl           1.44 ifeq ($(PEGASUS_ENABLE_CQL),true)
347 a.arora        1.30 	@ $(MAKE) "-SC" src/Pegasus/ControlProviders/QueryCapabilitiesProvider/tests repositoryServer
348 kumpf          1.43 endif
349 marek          1.38 ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
350                     	@ $(MAKE) "-SC" src/Pegasus/ProviderManager2/JMPI/org/pegasus/jmpi/tests repositoryServer
351                     endif
352 w.otsuka       1.40 	@ $(MAKE) --directory=$(PEGASUS_ROOT)/src/Clients/cimsub/tests/testscript \
353                                 -f Makefile repositoryServer
354 kumpf          1.16 
355 kumpf          1.52 rootbundle:
356 humberto       1.21 	$(MAKE) --directory=$(PEGASUS_ROOT)/src/utils/cnv2rootbundle -f Makefile
357 karl           1.57 # DO NOT DELETE

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2