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

Diff for /pegasus/Makefile between version 1.15 and 1.32

version 1.15, 2002/03/28 03:20:05 version 1.32, 2005/10/10 00:39:04
Line 1 
Line 1 
   #//%2005////////////////////////////////////////////////////////////////////////
   #//
   #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   #// IBM Corp.; EMC Corporation, The Open Group.
   #// 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.
   #//
   #//==============================================================================
 # Pegasus top level make file # Pegasus top level make file
 # options are # options are
 # Make rebuild # Make rebuild
Line 7 
Line 35 
 # #
 ROOT = . ROOT = .
  
   include $(ROOT)/env_var.status
 include $(ROOT)/mak/config.mak include $(ROOT)/mak/config.mak
  
 # This is a recurse make file # This is a recurse make file
 # Defines subdirectorys to go to recursively # Defines subdirectorys to go to recursively
  
 # DIRS = src cgi # DIRS = src cgi
 DIRS = src  DIRS = src test rpm Schemas
  
 # Define the inclusion of the recurse.mak file to execute the next # Define the inclusion of the recurse.mak file to execute the next
 # level of makefiles defined by the DIRS variable # level of makefiles defined by the DIRS variable
  
 include $(ROOT)/mak/recurse.mak include $(ROOT)/mak/recurse.mak
  
 # rebuild target cleans, setup dependencies, compiles all and builds  
 # repository  
  
 rebuild: clean depend all repository  
   .PHONY: FORCE
   
   FORCE:
   
   #-----------------------
   # build target: builds all source and runs the test
   #
   #                 builds mu utility,
   #                 compiles all,
   #                 sets up the dev server env
   
   build: all setupdevserver
         @ $(MAKE) -s tests         @ $(MAKE) -s tests
  
 world: depend all repository  #-----------------------
   # rebuild target: cleans and and then builds everything and runs tests
   #
   
   
   rebuild: clean repositoryclean world
   
   #-----------------------
   # world target: builds everything and runs tests
   #
   #       Typically used after a fresh checkout from CVS
   #
   #                 builds mu utility,
   #                 builds dependencies,
   #                 compiles all
   #                 sets up the dev server env,
   #                 builds repository,
   #                 runs the unit tests
   
   world: buildmu depend all setupdevserver repository
         @ $(MAKE) -s tests         @ $(MAKE) -s tests
  
   #---------------------
   # buildmu target: build mu the make utility that among other things
   #                 includes depend
   buildmu: FORCE
           $(MKDIRHIER) $(BIN_DIR)
           $(MAKE) --directory=$(PEGASUS_ROOT)/src/utils/mu -f Makefile
   
   #----------------------
   # setupdevserver and cleandevserver are used to setup and clear the
   # server configuration files needed to run the server in a development
   # environment.
   #
   setupdevserver: FORCE
           $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run
           @$(ECHO) "PEGASUS Development Server Runtime Environment configured "
   
   cleandevserver: FORCE
           $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run_clean
   
 # The repository Target removes and rebuilds the CIM repository # The repository Target removes and rebuilds the CIM repository
  
 repository:  # Note: Arguments must be quoted to preserve upper case characters in VMS.
         @ $(MAKE) -SC Schemas/Pegasus repository  repository: FORCE
           @ $(MAKE) "-SC" Schemas/Pegasus repository
   
   repositoryclean: FORCE
           @ $(RMREPOSITORY) $(REPOSITORY_ROOT)
   
   repositoryServer: FORCE
           @ $(MAKE) "-SC" Schemas/Pegasus repositoryServer
   
   testrepository: FORCE
           @ $(MAKE) "-SC" src/Providers/sample/Load repository
           @ $(MAKE) "-SC" test/wetest repository
           @ $(MAKE) "-SC" src/Clients/benchmarkTest/Load repository
           @ $(MAKE) "-SC" src/Pegasus/CQL/CQLCLI repository
           @ $(MAKE) "-SC" src/Pegasus/Query/QueryExpression/tests repository
           @ $(MAKE) "-SC" src/Providers/TestProviders/Load repository
           @ $(MAKE) "-SC" src/Pegasus/ControlProviders/QueryCapabilitiesProvider/tests repository
   
   testrepositoryServer: FORCE
           @ $(MAKE) "-SC" src/Providers/sample/Load repositoryServer
           @ $(MAKE) "-SC" test/wetest repositoryServer
           @ $(MAKE) "-SC" src/Clients/benchmarkTest/Load repositoryServer
           @ $(MAKE) "-SC" src/Pegasus/CQL/CQLCLI repositoryServer
           @ $(MAKE) "-SC" src/Pegasus/Query/QueryExpression/tests repositoryServer
           @ $(MAKE) "-SC" src/Providers/TestProviders/Load repositoryServer
           @ $(MAKE) "-SC" src/Pegasus/ControlProviders/QueryCapabilitiesProvider/tests repositoryServer
   
   removetestrepository: FORCE
           @ $(MAKE) "-SC" src/Providers/sample/Load removerepository
           @ $(MAKE) "-SC" test/wetest removerepository
           @ $(MAKE) "-SC" src/Clients/benchmarkTest/Load removerepository
           @ $(MAKE) "-SC" src/Providers/TestProviders/Load removerepository
  
 config: config:
         @ $(MAKE) -SC src/Providers/generic/ConfigSettingProvider/load config          @ $(ROOT)/SetConfig_EnvVar
   
 user:  
         @ $(MAKE) -SC src/Providers/generic/UserManagerProvider/load user  
  
 registration:  messages: rootbundle
         @ $(MAKE) -SC src/Providers/generic/PG_RegistrationProvider/load registration  
  
 shutdownService:  rootbundle:
         @ $(MAKE) -SC src/Providers/generic/ShutdownProvider/load shutdownService          $(MAKE) --directory=$(PEGASUS_ROOT)/src/utils/cnv2rootbundle -f Makefile
  
 # the collections of tests that we run with the server active. # the collections of tests that we run with the server active.
 # For now, these are centralized and do not include startup # For now, these are centralized and do not include startup
 # and shutdown of the server. # and shutdown of the server.
  
 activetests:  activetests: FORCE
         $(MAKE) --directory=pegasus/test -f Makefile clean          $(MAKE) --directory=$(PEGASUS_ROOT)/test -f Makefile clean
         TestClient          $(PEGASUS_ROOT)/bin/TestClient
         Client          $(PEGASUS_ROOT)/bin/Client
         $(MAKE) --directory=test -f Makefile tests          $(MAKE) --directory=$(PEGASUS_ROOT)/test -f Makefile tests


Legend:
Removed from v.1.15  
changed lines
  Added in v.1.32

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2