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

Diff for /pegasus/mak/BuildMakefile between version 1.2 and 1.20

version 1.2, 2001/12/13 14:53:31 version 1.20, 2002/09/01 18:18:23
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/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 -install    CIMSERVER_START_SERVICE = start cimserver
   CIMSERVER_STOP_SERVICE = cimserver -remove    CIMSERVER_STOP_SERVICE =
   REMOVE_PEGASUS_DIRECTORY = mu rmdirhier pegasus  
   SLEEP =   SLEEP =
     REMOVE_PEGASUS_DIRECTORY = mu rmdirhier pegasus
   MUEXE = mu.exe   MUEXE = mu.exe
   COPYMU = copy pegasus\src\utils\mu\$(MUEXE) /y $(MUEXE)   COPYMU = copy pegasus\src\utils\mu\$(MUEXE) /y $(MUEXE)
   MKDIR = pegasus/src/utils/mu/mu mkdirhier   MKDIR = pegasus/src/utils/mu/mu mkdirhier
   TESTS = prestarttests   TESTS = prestarttests
 endif endif
  
 ifeq ($(PEGASUS_PLATFORM),HPUX_PARISC_ACC)  ifeq ($(OS),HPUX)
   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 = 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   REMOVE_PEGASUS_DIRECTORY = rm -Rf pegasus.old; mv pegasus pegasus.old
   SLEEP = sleep 2  
   MUEXE = mu   MUEXE = mu
   COPYMU = cp -f pegasus/src/utils/mu/$(MUEXE) /usr/local/bin/$(MUEXE)    COPYMU = cp -f pegasus/src/utils/mu/$(MUEXE) $(BIN_DIR)/$(MUEXE)
   MKDIR = pegasus/src/utils/mu/mu mkdirhier   MKDIR = pegasus/src/utils/mu/mu mkdirhier
   TESTS = prestarttests poststarttests   TESTS = prestarttests poststarttests
 endif 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 ($(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/src/utils/mu -f Makefile
           $(MKDIR) $(BIN_DIR)
         $(COPYMU)         $(COPYMU)
  
 cleanbuild: removeall recheckout buildmu all $(TESTS) cleanbuild: removeall recheckout buildmu all $(TESTS)
Line 58 
Line 93 
         $(REMOVE_PEGASUS_DIRECTORY)         $(REMOVE_PEGASUS_DIRECTORY)
  
 checkout: checkout:
         cvs checkout -r dev pegasus          $(CVS) checkout pegasus
  
 rebuild: clean buildmu all tests rebuild: clean buildmu all tests
  
   build: all tests
   
 all: buildmu all: buildmu
         $(MAKE) --directory=pegasus -f Makefile depend         $(MAKE) --directory=pegasus -f Makefile depend
         $(MAKE) --directory=pegasus -f Makefile all         $(MAKE) --directory=pegasus -f Makefile all
  
   doc:
           $(MAKE) --directory=pegasus/doc/ProviderSpec -f Makefile
           $(MAKE) --directory=pegasus/doc/DevManual -f Makefile
   
 clean: clean:
         $(MAKE) --directory=pegasus -f Makefile clean         $(MAKE) --directory=pegasus -f Makefile clean
  
   repositoryServer:
           $(CIMSERVER_STOP_SERVICE)
           $(SLEEP)
           $(RMDIRHIER) $(REPOSITORY_ROOT)
           $(CIMSERVER_START_SERVICE)
           $(SLEEP)
           $(MAKE) --directory=pegasus -f Makefile repositoryServer
           $(MAKE) --directory=pegasus -f Makefile testrepositoryServer
  
 prestarttests: prestarttests:
           $(CIMSERVER_STOP_SERVICE)
           $(SLEEP)
         $(MAKE) --directory=pegasus -f Makefile repository         $(MAKE) --directory=pegasus -f Makefile repository
         $(MAKE) --directory=pegasus -f Makefile config          $(MAKE) --directory=pegasus -f Makefile testrepository
         $(MAKE) --directory=pegasus -f Makefile user  
         $(MAKE) --directory=pegasus -f Makefile shutdownService  
         $(MAKE) --directory=pegasus -f Makefile tests         $(MAKE) --directory=pegasus -f Makefile tests
         $(MAKE) --directory=pegasus/src/Server -f Makefile install         $(MAKE) --directory=pegasus/src/Server -f Makefile install
         $(MAKE) --directory=pegasus/test -f Makefile clean  
  
 poststarttests: poststarttests:
           $(MAKE) --directory=pegasus/test/wetest -f Makefile clean
         $(CIMSERVER_START_SERVICE)         $(CIMSERVER_START_SERVICE)
         $(SLEEP)         $(SLEEP)
         TestClient          $(MAKE) --directory=pegasus -f Makefile poststarttests
         Client  
         $(MAKE) --directory=pegasus/test -f Makefile tests  
         @ echo Terminating cimserver...  
         @ $(CIMSERVER_STOP_SERVICE)  
  
 tests: $(TESTS) tests: $(TESTS)
         @ echo Finished Tests         @ echo Finished Tests


Legend:
Removed from v.1.2  
changed lines
  Added in v.1.20

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2