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

Diff for /pegasus/mak/BuildMakefile between version 1.6 and 1.33

version 1.6, 2002/01/28 08:44:07 version 1.33, 2005/02/10 06:41:52
Line 15 
Line 15 
  
 ############################################################################### ###############################################################################
 ## ##
 ## Platform specific settings for HP-UX  ## Platform specific settings for several platforms.
 ## ##
 ## NOTE: Please add platform specific environment variables as appropriate. ## NOTE: Please add platform specific environment variables as appropriate.
 ## ##
 ############################################################################### ###############################################################################
  
   include $(PEGASUS_ROOT)/mak/config.mak
   
   # 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) ifeq ($(PEGASUS_PLATFORM),WIN32_IX86_MSVC)
   CIMSERVER_START_SERVICE =    CIMSERVER_START_SERVICE = cimserver -start
   CIMSERVER_STOP_SERVICE =    CIMSERVER_STOP_SERVICE = cimserver -stop
   SLEEP =   SLEEP =
   REMOVE_PEGASUS_DIRECTORY = mu rmdirhier pegasus   REMOVE_PEGASUS_DIRECTORY = mu rmdirhier pegasus
   MUEXE = mu.exe   MUEXE = mu.exe
   COPYMU = copy pegasus\src\utils\mu\$(MUEXE) /y $(MUEXE)    MKDIR = $(MUEXE) mkdirhier
   MKDIR = pegasus/src/utils/mu/mu mkdirhier    TESTS = prestarttests poststarttests
   TESTS = prestarttests  endif
   
   ifeq ($(OS),HPUX)
     CIMSERVER_START_SERVICE = cimserver
     CIMSERVER_STOP_SERVICE = cimserver -s; true
     SLEEP = sleep 5
     REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old
     MUEXE = mu
     MKDIR = $(MUEXE) mkdirhier
     TESTS = prestarttests poststarttests
   endif
   
   ifeq ($(PEGASUS_PLATFORM),SOLARIS_SPARC_CC)
     CIMSERVER_START_SERVICE = cimserver
     CIMSERVER_STOP_SERVICE = /usr/bin/ps -ef | /usr/bin/grep cimserver | /usr/bin/grep -v grep | /usr/bin/awk '{print "kill -9 "$$2 |"/usr/bin/ksh"}'
     SLEEP = sleep 5
     REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old
     MUEXE = mu
     MKDIR = $(MUEXE) mkdirhier
     TESTS = prestarttests poststarttests
 endif endif
  
 ifeq ($(PEGASUS_PLATFORM),HPUX_PARISC_ACC)  ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
   CIMSERVER_START_SERVICE = cimserver -d    CIMSERVER_START_SERVICE = cimserver
   CIMSERVER_STOP_SERVICE = /usr/bin/ps -ef | /usr/bin/grep cimserver | /usr/bin/grep -v grep | /usr/bin/awk '{print "kill -9 "$$2 |"/usr/bin/sh"}'    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   SLEEP = sleep 5
   REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old   REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old
   MUEXE = mu   MUEXE = mu
   COPYMU = cp -f pegasus/src/utils/mu/$(MUEXE) /usr/local/bin/$(MUEXE)    MKDIR = $(MUEXE) mkdirhier
   MKDIR = pegasus/src/utils/mu/mu mkdirhier  
   TESTS = prestarttests poststarttests   TESTS = prestarttests poststarttests
 endif endif
  
   ifeq ($(DYNAMIC_SOCKSIFY),TRUE)
     CVS = socksify cvs
   else
     CVS = cvs
   endif
   
 error: error:
         @ echo "Specify desired makefile option (i.e., cleanbuild, rebuild)"         @ echo "Specify desired makefile option (i.e., cleanbuild, rebuild)"
  
 buildmu: buildmu:
         $(MAKE) --directory=pegasus/src/utils/mu -f Makefile          $(MAKE) --directory=$(PEGASUS_ROOT)/src/utils/mu -f Makefile
         $(COPYMU)          $(MKDIR) $(BIN_DIR)
  
 cleanbuild: removeall recheckout buildmu all $(TESTS) cleanbuild: removeall recheckout buildmu all $(TESTS)
  
Line 58 
Line 88 
         $(REMOVE_PEGASUS_DIRECTORY)         $(REMOVE_PEGASUS_DIRECTORY)
  
 checkout: checkout:
         cvs checkout pegasus          $(CVS) checkout pegasus
  
 rebuild: clean buildmu all tests rebuild: clean buildmu all tests
  
   rebuild-notest: clean buildmu all
   
   build: all tests
   
   build-notest: all
   
 all: buildmu all: buildmu
         $(MAKE) --directory=pegasus -f Makefile depend          $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile depend
         $(MAKE) --directory=pegasus -f Makefile all          $(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: clean:
         $(MAKE) --directory=pegasus -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: prestarttests:
         $(MAKE) --directory=pegasus -f Makefile repository          $(CIMSERVER_STOP_SERVICE)
         $(MAKE) --directory=pegasus -f Makefile config          $(SLEEP)
         $(MAKE) --directory=pegasus -f Makefile user          $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository
         $(MAKE) --directory=pegasus -f Makefile shutdownService          $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository
         $(MAKE) --directory=pegasus -f Makefile registration          $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile tests
         $(MAKE) --directory=pegasus -f Makefile tests          $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run
         $(MAKE) --directory=pegasus/src/Server -f Makefile install  
         $(MAKE) --directory=pegasus/test -f Makefile clean  
  
 poststarttests: poststarttests:
           $(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/CQL/tests/Queries -f Makefile clean
           $(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)         $(CIMSERVER_START_SERVICE)
         $(SLEEP)         $(SLEEP)
           $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests
   
   ###############################################################################
   ##  Test Suite Definitions
   ###############################################################################
   
   ###############################################################################
   ##  OOP Test Suite 1: "Out-of-Process"(OOP) Provider Tests
   ##
   ##  Configuration Options: forceProviderProcesses=true
   ##
   ###############################################################################
   OOP_TS1_CONFIG_OPTIONS = forceProviderProcesses=true
   OOP_TS1_TEST_CMDS = \
         TestClient         TestClient
         Client  
         $(MAKE) --directory=pegasus/test -f Makefile tests  run_OOP_TS1:
         @ echo Terminating cimserver...          $(MAKE) -f $(PEGASUS_ROOT)/mak/commands.mak runTestSuite \
         @ $(CIMSERVER_STOP_SERVICE)              CIMSERVER_CONFIG_OPTIONS="$(OOP_TS1_CONFIG_OPTIONS)" \
               TESTSUITE_CMDS="$(OOP_TS1_TEST_CMDS)"
   ###############################################################################
  
 tests: $(TESTS) tests: $(TESTS)
   ifeq ($(PEGASUS_PLATFORM),WIN32_IX86_MSVC)
           $(CIMSERVER_STOP_SERVICE)
           $(MAKE) --directory=$(PEGASUS_ROOT)src/Server -f Makefile uninstall
   endif
         @ echo Finished Tests         @ echo Finished Tests
  
 ############################################################################### ###############################################################################


Legend:
Removed from v.1.6  
changed lines
  Added in v.1.33

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2