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

Diff for /pegasus/src/Pegasus/Makefile between version 1.10.2.14 and 1.136.2.2

version 1.10.2.14, 2001/12/05 04:07:36 version 1.136.2.2, 2013/07/20 18:32:37
Line 1 
Line 1 
   #//%LICENSE////////////////////////////////////////////////////////////////
   #//
   #// Licensed to The Open Group (TOG) under one or more contributor license
   #// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
   #// this work for additional information regarding copyright ownership.
   #// Each contributor licenses this file to you under the OpenPegasus Open
   #// Source License; you may not use this file except in compliance with the
   #// License.
   #//
   #// 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=../.. ROOT=../..
  
 include $(ROOT)/mak/config.mak include $(ROOT)/mak/config.mak
  
 TEST_DIRS = \  
   
 # This breaks the build since it has no depend rule: Config/install \  
 # Also maybe we don't want to install during build.  
   
 DIRS = \ DIRS = \
     Common \     Common \
       General \
       Query/QueryCommon \
       Client \
     Config \     Config \
     Repository \     Repository \
     Protocol \  
     getoopt \     getoopt \
       WQL \
           Handler
   
   ifeq ($(PEGASUS_ENABLE_CQL),true)
       DIRS += CQL
   endif
   
   ifeq ($(PEGASUS_ENABLE_PROTOCOL_WSMAN),true)
       DIRS += \
           WsmServer
       TEST_DIRS += \
           WsmServer/tests
   endif
   
   DIRS += \
       Query/QueryExpression \
       Provider \
     Compiler \     Compiler \
     Compiler/load \      Compiler/cmdline
     Compiler/cmdline \  
     Client \  TEST_DIRS = \
       Common/tests \
       General/tests \
       Client/tests \
       Config/tests \
       Repository/tests \
       WQL/tests
   
   ifeq ($(PEGASUS_ENABLE_CQL),true)
       TEST_DIRS += \
           CQL/tests \
           CQL/CQLCLI
   endif
   
   TEST_DIRS += \
       Compiler/tests \
       Query/QueryExpression/tests \
       Query/QueryExpression/tests/Queries
   
   
   ifneq ($(OS),HPUX)
       TEST_DIRS += \
           Compiler/cmdline/tests
   endif
   
   DIRS += \
     ExportClient \     ExportClient \
     Provider \      Server/ProviderRegistrationManager \
     Provider2 \  
     ExportServer \     ExportServer \
       Listener \
     Security/UserManager \     Security/UserManager \
     Security/Authentication \     Security/Authentication \
       ControlProviders/ConfigSettingProvider \
       ControlProviders/UserAuthProvider \
       ControlProviders/ProviderRegistrationProvider \
       ControlProviders/NamespaceProvider \
       HandlerService \
       IndicationService \
       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_SYSTEM_LOG_HANDLER
       DIRS += \
           Handler/SystemLogListenerDestination
       TEST_DIRS += \
           Handler/SystemLogListenerDestination/tests
   endif
   
   ifdef PEGASUS_ENABLE_EMAIL_HANDLER
       DIRS += \
           Handler/EmailListenerDestination
       TEST_DIRS += \
           Handler/EmailListenerDestination/tests
   endif
   
   ifeq ($(PEGASUS_ENABLE_PROTOCOL_WSMAN),true)
       DIRS += \
           Handler/wsmanIndicationHandler
       TEST_DIRS += \
           Handler/wsmanIndicationHandler/tests/Destination
   endif
   
   DIRS += \
       ProviderManager2 \
       ProviderManager2/Default
   
   TEST_DIRS += \
       ProviderManager2/tests \
       ProviderManager2/Default/tests
   
   ifeq ($(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER), true)
       DIRS += \
           Provider/CMPI \
           ProviderManager2/CMPI
   endif
   
   ifdef PEGASUS_ENABLE_REMOTE_CMPI
   
       DIRS += \
           ProviderManager2/CMPIR/native \
           ProviderManager2/CMPIR \
           ProviderManager2/CMPIR/tcpcomm \
           ProviderManager2/CMPIR/tcpcommrem \
           ProviderManager2/CMPIR/daemon \
           ProviderManager2/CMPIR/tools
   endif
   
   ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
       DIRS += \
           ProviderManager2/JMPI
   endif
   
   DIRS += \
       ProviderManagerRouter \
       ProviderManagerService \
       ProviderManagerService/ProviderAgent
   
   ifdef PEGASUS_USE_PAM_STANDALONE_PROC
       DIRS += \
           Security/Cimservera
   endif
   
   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
   
   ifeq ($(PEGASUS_ENABLE_CQL),true)
       DIRS += \
           ControlProviders/QueryCapabilitiesProvider
       TEST_DIRS += \
           ControlProviders/QueryCapabilitiesProvider/tests
   endif
   
   ifdef PEGASUS_HAS_SSL
       DIRS += \
           ControlProviders/CertificateProvider
   endif
   
   DIRS += \
     Server \     Server \
     Handler/CIMxmlIndicationHandler \     Handler/CIMxmlIndicationHandler \
     Handler/sendmailIndicationHandler \      Handler/FileURIHandler  \
     Handler/snmpIndicationHandler \      msg/Server \
     Common/tests \      msg/CLI \
     Config/tests \      msg/Listener
     Repository/tests \  
   ifeq ($(PEGASUS_USE_EMANATE), true)
       DIRS += \
           Handler/snmpIndicationHandler
   endif
   
   ifeq ($(PEGASUS_USE_NET_SNMP), true)
       DIRS += \
           Handler/snmpIndicationHandler
   endif
   
   TEST_DIRS += \
     Server/tests \     Server/tests \
     ExportServer/tests \      Server/tests/InterfaceRestriction \
     Client/tests \      Handler/CIMxmlIndicationHandler/tests/Destination \
     Compiler/tests \      Handler/FileURIHandler/tests
     Subscription  
   ifeq ($(PEGASUS_USE_EMANATE), true)
       TEST_DIRS += \
           Handler/snmpIndicationHandler/tests/testclient \
           Handler/snmpIndicationHandler/tests/SnmpHandlerException
   endif
   
   
   ifeq ($(PEGASUS_USE_NET_SNMP), true)
       TEST_DIRS += \
           Handler/snmpIndicationHandler/tests/testclient \
           Handler/snmpIndicationHandler/tests/SnmpHandlerException
   endif
  
 #    Subscription/tests \  
  
 include $(ROOT)/mak/recurse.mak include $(ROOT)/mak/recurse.mak


Legend:
Removed from v.1.10.2.14  
changed lines
  Added in v.1.136.2.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2