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

Diff for /pegasus/mak/BuildMakefile between version 1.24 and 1.40

version 1.24, 2003/06/13 09:36:46 version 1.40, 2005/05/12 15:27:28
Line 1 
Line 1 
 ###############################################################################  #//%2005////////////////////////////////////////////////////////////////////////
 ##  #//
 ## Makefile for Pegasus CIMOM  #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 ##  #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
 ## NOTE: Makefile needs to be executed from the parent directory of  #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
 ## pegasus directory because the path settings are relative and this  #// IBM Corp.; EMC Corporation, The Open Group.
 ## Makefile may remove and recheckout the pegasus source tree.  #// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   #// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   #// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   #// EMC Corporation; VERITAS Software Corporation; The Open Group.
   #//
   #// Permission is hereby granted, free of charge, to any person obtaining a copy
   #// of this software and associated documentation files (the "Software"), to
   #// deal in the Software without restriction, including without limitation the
   #// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
   #// sell copies of the Software, and to permit persons to whom the Software is
   #// furnished to do so, subject to the following conditions:
   #//
   #// THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
   #// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
   #// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
   #// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
   #// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
   #// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
   #// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
   #// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   #//
   #//==============================================================================
   ###############################################################################
   ##
   ## Makefile for managing a Pegasus source tree
   ##
   ## NOTE: This Makefile should be executed from the parent directory of the
   ## pegasus directory because it may remove and recheckout the pegasus source
   ## tree.
 ## ##
 ## Options: ## Options:
 ##      cleanbuild - Removes the existing pegasus directory contents, performs  ##      cleanbuild - Remove the existing pegasus directory, perform a CVS
 ##                   checkout, build and runs tests.  ##                   checkout of the pegasus source, build, and run tests.
 ##      rebuild    - Rebuild and execute tests.  ##      removeall  - Remove the existing pegasus directory.
   ##      checkout   - Perform a CVS checkout of the pegasus source.
   ##      recheckout - Remove the existing pegasus directory and perform a CVS
   ##                   checkout of the pegasus source.
 ## ##
 ###############################################################################  ## All pegasus/TestMakefile options are also supported by this Makefile.
   
 ###############################################################################  
 ##  
 ## Platform specific settings for several platforms.  
 ##  
 ## NOTE: Please add platform specific environment variables as appropriate.  
 ## ##
 ############################################################################### ###############################################################################
  
 include pegasus/mak/config.mak  include $(PEGASUS_ROOT)/TestMakefile
   
 # There is a start command for cimserver but no stop today.  Because of problems with  
 # the use of cimserver as a service, we simply used the start command to allow us to  
 # get on with testing. I know of no CLI to stop a window started with start so that  
 # field is blank.  ks 7 April 2002  
 ifeq ($(PEGASUS_PLATFORM),WIN32_IX86_MSVC)  
   CIMSERVER_START_SERVICE = cimserver -start  
   CIMSERVER_STOP_SERVICE = cimserver -stop  
   SLEEP =  
   REMOVE_PEGASUS_DIRECTORY = mu rmdirhier pegasus  
   MUEXE = mu.exe  
   COPYMU = copy pegasus\src\utils\mu\$(MUEXE) /y $(MUEXE)  
   MKDIR = pegasus/src/utils/mu/mu mkdirhier  
   TESTS = prestarttests poststarttests  
 endif  
   
 ifeq ($(OS),HPUX)  
   CIMSERVER_START_SERVICE = cimserver  
   CIMSERVER_STOP_SERVICE = cimserver -s  
   SLEEP = sleep 5  
   REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old  
   MUEXE = mu  
   COPYMU = cp -f pegasus/src/utils/mu/$(MUEXE) $(BIN_DIR)/$(MUEXE)  
   MKDIR = pegasus/src/utils/mu/mu mkdirhier  
   TESTS = prestarttests poststarttests  
 endif  
   
 ifeq ($(PEGASUS_PLATFORM),LINUX_IX86_GNU)  
   CIMSERVER_START_SERVICE = cimserver  
   CIMSERVER_STOP_SERVICE = /bin/ps -ef | /bin/grep cimserver | /bin/grep -v grep | /usr/bin/awk '{print "kill -9 "$$2 |"/bin/bash"}'  
   SLEEP = sleep 5  
   REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old  
   MUEXE = mu  
   COPYMU = cp -f pegasus/src/utils/mu/$(MUEXE) $(BIN_DIR)/$(MUEXE)  
   MKDIR = pegasus/src/utils/mu/mu mkdirhier  
   TESTS = prestarttests poststarttests  
 endif  
   
 ifeq ($(PEGASUS_PLATFORM),LINUX_IA64_GNU)  
   CIMSERVER_START_SERVICE = cimserver  
   CIMSERVER_STOP_SERVICE = /bin/ps -ef | /bin/grep cimserver | /bin/grep -v grep | /usr/bin/awk '{print "kill -9 "$$2 |"/bin/bash"}'  
   SLEEP = sleep 5  
   REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old  
   MUEXE = mu  
   COPYMU = cp -f pegasus/src/utils/mu/$(MUEXE) $(BIN_DIR)/$(MUEXE)  
   MKDIR = pegasus/src/utils/mu/mu mkdirhier  
   TESTS = prestarttests poststarttests  
 endif  
   
 ifeq ($(PEGASUS_PLATFORM),LINUX_PPC_GNU)  
   CIMSERVER_START_SERVICE = cimserver  
   CIMSERVER_STOP_SERVICE = /bin/ps -ef | /bin/grep cimserver | /bin/grep -v grep | /usr/bin/awk '{print "kill -9 "$$2 |"/bin/bash"}'  
   SLEEP = sleep 5  
   REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old  
   MUEXE = mu  
   COPYMU = cp -f pegasus/src/utils/mu/$(MUEXE) $(BIN_DIR)/$(MUEXE)  
   MKDIR = pegasus/src/utils/mu/mu mkdirhier  
   TESTS = prestarttests poststarttests  
 endif  
  
 ifeq ($(DYNAMIC_SOCKSIFY),TRUE) ifeq ($(DYNAMIC_SOCKSIFY),TRUE)
   CVS = socksify cvs   CVS = socksify cvs
Line 88 
Line 54 
   CVS = cvs   CVS = cvs
 endif endif
  
 error:  cleanbuild: recheckout all tests
         @ echo "Specify desired makefile option (i.e., cleanbuild, rebuild)"  
   
 buildmu:  
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/utils/mu -f Makefile  
         $(MKDIR) $(BIN_DIR)  
         $(COPYMU)  
   
 cleanbuild: removeall recheckout buildmu all $(TESTS)  
  
 recheckout: removeall checkout recheckout: removeall checkout
  
Line 104 
Line 62 
         $(REMOVE_PEGASUS_DIRECTORY)         $(REMOVE_PEGASUS_DIRECTORY)
  
 checkout: checkout:
         $(CVS) checkout pegasus          $(CVS) checkout -P pegasus
   
 rebuild: clean buildmu all tests  
   
 build: all tests  
   
 all: buildmu  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile depend  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile all  
   
 doc:  
         $(MAKE) --directory=$(PEGASUS_ROOT)/doc/ProviderSpec -f Makefile  
         $(MAKE) --directory=$(PEGASUS_ROOT)/doc/DevManual -f Makefile  
   
 clean:  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile clean  
   
 repositoryServer:  
         $(CIMSERVER_STOP_SERVICE)  
         $(SLEEP)  
         $(RMDIRHIER) $(REPOSITORY_ROOT)  
         $(CIMSERVER_START_SERVICE)  
         $(SLEEP)  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryServer  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepositoryServer  
   
 prestarttests:  
         $(CIMSERVER_STOP_SERVICE)  
         $(SLEEP)  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile tests  
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install  
   
 poststarttests:  
         $(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile clean  
         $(CIMSERVER_START_SERVICE)  
         $(SLEEP)  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests  
   
 tests: $(TESTS)  
 ifeq ($(PEGASUS_PLATFORM),WIN32_IX86_MSVC)  
         $(CIMSERVER_STOP_SERVICE)  
         $(MAKE) --directory=$(PEGASUS_ROOT)src/Server -f Makefile uninstall  
 endif  
         @ echo Finished Tests  
   
 ###############################################################################  
 ##  
 ## Trace Configuration  
 ##  
 ## Options:  
 ##      XMLTraceOn: Enables XML request and response tracing.  
 ##      ProviderLoadTraceOn: Enables Provider load tracing.  
 ##      XML+ProviderLoadTraceOn: Enables both XML request/response and Provider  
 ##                                 load tracing.  
 ##      AllTraceOn: Enables all tracing.  
 ##      AllTraceOff: Disables all tracing.  
 ##      list: Lists trace settings.  
 ##  
 ###############################################################################  
   
 XMLTraceOn:  
         cimconfig -s traceComponents=XmlIO -c  
         cimconfig -s traceLevel=3 -c  
         cimconfig -g traceComponents  
         cimconfig -g traceLevel  
   
 ProviderLoadTraceOn:  
         cimconfig -s traceComponents=ProvManager,OsAbstraction  
         cimconfig -s traceLevel=3 -c  
         cimconfig -g traceComponents  
         cimconfig -g traceLevel  
   
 XML+ProviderLoadTraceOn:  
         cimconfig -s traceComponents=XmlIO,ProvManager,OsAbstraction  
         cimconfig -s traceLevel=3 -c  
         cimconfig -g traceComponents  
         cimconfig -g traceLevel  
   
 AllTraceOn:  
         cimconfig -s traceComponents=ALL  
         cimconfig -s traceLevel=3 -c  
         cimconfig -g traceComponents  
         cimconfig -g traceLevel  
   
 AllTraceOff:  
         cimconfig -s traceComponents=  
         cimconfig -g traceComponents  
         cimconfig -g traceLevel  
   
 list:  
         cimconfig -g traceComponents  
         cimconfig -g traceLevel  
         cimconfig -g traceFilePath  
   
 # DO NOT DELETE  


Legend:
Removed from v.1.24  
changed lines
  Added in v.1.40

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2