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

Diff for /pegasus/src/Pegasus/Makefile between version 1.71 and 1.126.4.1

version 1.71, 2004/08/25 01:18:34 version 1.126.4.1, 2008/06/25 07:04:07
Line 1 
Line 1 
   #//%2006////////////////////////////////////////////////////////////////////////
   #//
   #// 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.
   #// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   #// EMC Corporation; Symantec 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.
   #//
   #//==============================================================================
 ROOT=$(PEGASUS_ROOT) ROOT=$(PEGASUS_ROOT)
  
 include $(ROOT)/mak/config.mak include $(ROOT)/mak/config.mak
  
   
 DIRS = \ DIRS = \
     Common \     Common \
       Query/QueryCommon \
       Client \
     Config \     Config \
     Repository \     Repository \
     getoopt \     getoopt \
     Client \  
     Compiler \  
     Compiler/cmdline \  
     ExportClient \  
     WQL \     WQL \
       CQL \
       Query/QueryExpression \
     Provider \     Provider \
       Compiler \
       Compiler/cmdline
   
   TEST_DIRS = \
       Common/tests \
       Client/tests \
       Config/tests \
       Repository/tests \
       WQL/tests \
       CQL/tests \
       Compiler/tests \
       Query/QueryExpression/tests \
       Query/QueryExpression/tests/Queries \
       CQL/CQLCLI
   
   ifneq ($(OS),HPUX)
       TEST_DIRS += \
           Compiler/cmdline/tests
   endif
   
   DIRS += \
       ExportClient \
     Server/ProviderRegistrationManager \     Server/ProviderRegistrationManager \
     ExportServer \     ExportServer \
     Listener \     Listener \
Line 25 
Line 76 
     ControlProviders/NamespaceProvider \     ControlProviders/NamespaceProvider \
     HandlerService \     HandlerService \
     IndicationService \     IndicationService \
     ManagedClient      ManagedClient \
       DynListener \
   
   TEST_DIRS += \
       ExportClient/tests \
       Server/ProviderRegistrationManager/tests \
       ExportServer/tests \
       Listener/tests \
       Security/UserManager/tests \
       Security/Authentication/tests \
       ControlProviders/ProviderRegistrationProvider/tests \
       HandlerService/tests \
       IndicationService/tests \
       DynListener/tests
  
 ifdef PEGASUS_ENABLE_SLP  
   ifdef PEGASUS_ENABLE_SYSTEM_LOG_HANDLER
 DIRS += \ DIRS += \
     ControlProviders/InteropProvider \          Handler/SystemLogListenerDestination
     ControlProviders/InteropProvider/tests  
 endif endif
  
 ifdef PEGASUS_USE_23PROVIDER_MANAGER  ifdef PEGASUS_ENABLE_EMAIL_HANDLER
 DIRS += \ DIRS += \
         ProviderManager \          Handler/EmailListenerDestination
         ProviderManager/tests  endif
 else  
 DIRS += \ DIRS += \
         ProviderManager2 \         ProviderManager2 \
         ProviderManager2/Default \      ProviderManager2/Default
         ProviderManager2/ProviderAgent \  
   TEST_DIRS += \
         ProviderManager2/tests \         ProviderManager2/tests \
         ProviderManager2/Default/tests         ProviderManager2/Default/tests
 endif  
  
 ifdef PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER  ifeq ($(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER), true)
 DIRS += \ DIRS += \
         Provider/CMPI \         Provider/CMPI \
         ProviderManager2/CMPI         ProviderManager2/CMPI
 endif endif
  
   ifdef PEGASUS_ENABLE_REMOTE_CMPI
  
 ifdef ENABLE_REMOTE_CMPI  
 DIRS += \ DIRS += \
           ProviderManager2/CMPIR/native \
         ProviderManager2/CMPIR \         ProviderManager2/CMPIR \
         ProviderManager2/CMPIR/tcpcomm \         ProviderManager2/CMPIR/tcpcomm \
         ProviderManager2/CMPIR/native \  
         ProviderManager2/CMPIR/tcpcommrem \         ProviderManager2/CMPIR/tcpcommrem \
         ProviderManager2/CMPIR/daemon          ProviderManager2/CMPIR/daemon \
           ProviderManager2/CMPIR/tools
 endif endif
  
 ifeq ($(PEGASUS_PLATFORM),LINUX_IX86_GNU)  ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
    ifdef PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER  
       DIRS += \       DIRS += \
          ProviderManager2/JMPI          ProviderManager2/JMPI
    endif    endif
 endif  
   DIRS += \
       ProviderManagerService \
       ProviderManagerService/ProviderAgent
  
 ifdef PEGASUS_USE_PAM_STANDALONE_PROC ifdef PEGASUS_USE_PAM_STANDALONE_PROC
 DIRS += \ DIRS += \
         Security/Cimservera         Security/Cimservera
 endif endif
  
 ifdef PEGASUS_HAS_PERFINST  ifndef PEGASUS_DISABLE_PERFINST
       DIRS += ControlProviders/Statistic
       TEST_DIRS += ControlProviders/Statistic/test
   endif
   
   ifeq ($(PEGASUS_ENABLE_INTEROP_PROVIDER),true)
       DIRS += ControlProviders/InteropProvider
       TEST_DIRS += \
           ControlProviders/InteropProvider/tests \
           ControlProviders/InteropProvider/ServerProfileTests
   endif
   
   ifndef PEGASUS_DISABLE_CQL
 DIRS += \ DIRS += \
         ControlProviders/Statistic \          ControlProviders/QueryCapabilitiesProvider
         ControlProviders/Statistic/test      TEST_DIRS += \
           ControlProviders/QueryCapabilitiesProvider/tests
   endif
   
   ifdef PEGASUS_HAS_SSL
       DIRS += \
           ControlProviders/CertificateProvider
 endif endif
  
 DIRS += \ DIRS += \
         Server \         Server \
     Handler/CIMxmlIndicationHandler \     Handler/CIMxmlIndicationHandler \
     Handler/sendmailIndicationHandler \  
     Handler/snmpIndicationHandler \     Handler/snmpIndicationHandler \
     Common/tests \  
     Config/tests \  
     Repository/tests \  
     Server/tests \  
     Server/ProviderRegistrationManager/tests \  
     ExportServer/tests \  
     Client/tests \  
     Compiler/tests \  
     Security/Authentication/tests \  
     Security/UserManager/tests \  
     IndicationService/tests \  
     ControlProviders/ProviderRegistrationProvider/tests \  
     Listener/tests \  
     Consumer/tests \  
     msg/Server \     msg/Server \
     msg/CLI      msg/CLI \
       msg/Listener
   
   TEST_DIRS += \
       Server/tests \
       Handler/CIMxmlIndicationHandler/tests/Destination \
       Handler/snmpIndicationHandler/tests/testclient \
       Handler/snmpIndicationHandler/tests/SnmpHandlerException
   
  
 include $(ROOT)/mak/recurse.mak include $(ROOT)/mak/recurse.mak


Legend:
Removed from v.1.71  
changed lines
  Added in v.1.126.4.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2