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

Diff for /pegasus/mak/BuildMakefile between version 1.35 and 1.37

version 1.35, 2005/02/11 00:30:41 version 1.37, 2005/02/11 22:55:18
Line 2 
Line 2 
 ## ##
 ## Makefile for Pegasus CIMOM ## Makefile for Pegasus CIMOM
 ## ##
 ## NOTE: Makefile needs to be executed from the parent directory of  ## NOTE: This Makefile should be executed from the parent directory of the
 ## pegasus directory because the path settings are relative and this  ## pegasus directory because it may remove and recheckout the pegasus source
 ## Makefile may remove and recheckout the pegasus source tree.  ## tree.
 ## ##
 ## Options: ## Options:
 ##      cleanbuild - Removes the existing pegasus directory contents, performs ##      cleanbuild - Removes the existing pegasus directory contents, performs
Line 13 
Line 13 
 ## ##
 ############################################################################### ###############################################################################
  
 ###############################################################################  error:
 ##          @ echo "Specify desired makefile option (i.e., cleanbuild, rebuild)"
 ## Platform specific settings for several platforms.  
 ##  
 ## NOTE: Please add platform specific environment variables as appropriate.  
 ##  
 ###############################################################################  
  
 include $(PEGASUS_ROOT)/mak/config.mak include $(PEGASUS_ROOT)/mak/config.mak
 include $(PEGASUS_ROOT)/mak/commands.mak include $(PEGASUS_ROOT)/mak/commands.mak
  
 TESTS = prestarttests poststarttests  
   
 ifeq ($(DYNAMIC_SOCKSIFY),TRUE) ifeq ($(DYNAMIC_SOCKSIFY),TRUE)
   CVS = socksify cvs   CVS = socksify cvs
 else else
   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  
         $(MKDIRHIER) $(BIN_DIR)  
   
 cleanbuild: removeall recheckout buildmu all $(TESTS)  
  
 recheckout: removeall checkout recheckout: removeall checkout
  
Line 47 
Line 33 
         $(REMOVE_PEGASUS_DIRECTORY)         $(REMOVE_PEGASUS_DIRECTORY)
  
 checkout: checkout:
         $(CVS) checkout pegasus          $(CVS) checkout -P pegasus
  
 rebuild: clean buildmu all tests  rebuild: clean all tests
  
 rebuild-notest: clean buildmu all  rebuild-notest: clean all
  
 build: all tests build: all tests
  
 build-notest: all build-notest: all
  
 all: buildmu  clean:
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile depend          $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile clean
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile all  
  
 doc:  buildmu:
         $(MAKE) --directory=$(PEGASUS_ROOT)/doc/ProviderSpec -f Makefile          $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile buildmu
         $(MAKE) --directory=$(PEGASUS_ROOT)/doc/DevManual -f Makefile  
  
 clean:  all:
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile clean          $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile all
   
   doc:
           $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile doc
  
 repositoryServer: repositoryServer:
         $(CIMSERVER_STOP_SERVICE)          $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile repositoryServer
         $(SLEEP) 5  
         $(RMDIRHIER) $(REPOSITORY_ROOT)  
         $(CIMSERVER_START_SERVICE)  
         $(SLEEP) 5  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryServer  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepositoryServer  
  
 prestarttests: prestarttests:
         $(CIMSERVER_STOP_SERVICE)          $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile prestarttests
         $(SLEEP) 5  
         $(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_run  
  
 poststarttests: poststarttests:
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/CQL/tests/Queries -f Makefile clean          $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile poststarttests
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Query/QueryExpression/tests/Queries -f Makefile clean  
         $(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile clean  
         $(CIMSERVER_START_SERVICE)  
         $(SLEEP) 5  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile run_OOP_TS1  
   
 ###############################################################################  
   
 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  tests:
           $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile tests


Legend:
Removed from v.1.35  
changed lines
  Added in v.1.37

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2