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

  1 martin 1.131 #//%LICENSE////////////////////////////////////////////////////////////////
  2 martin 1.132 #//
  3 martin 1.131 #// Licensed to The Open Group (TOG) under one or more contributor license
  4              #// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
  5              #// this work for additional information regarding copyright ownership.
  6              #// Each contributor licenses this file to you under the OpenPegasus Open
  7              #// Source License; you may not use this file except in compliance with the
  8              #// License.
  9 martin 1.132 #//
 10 martin 1.131 #// Permission is hereby granted, free of charge, to any person obtaining a
 11              #// copy of this software and associated documentation files (the "Software"),
 12              #// to deal in the Software without restriction, including without limitation
 13              #// the rights to use, copy, modify, merge, publish, distribute, sublicense,
 14              #// and/or sell copies of the Software, and to permit persons to whom the
 15              #// Software is furnished to do so, subject to the following conditions:
 16 martin 1.132 #//
 17 martin 1.131 #// The above copyright notice and this permission notice shall be included
 18              #// in all copies or substantial portions of the Software.
 19 martin 1.132 #//
 20 martin 1.131 #// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 21 martin 1.132 #// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 22 martin 1.131 #// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 23              #// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 24              #// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 25              #// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 26              #// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 27 martin 1.132 #//
 28 martin 1.131 #//////////////////////////////////////////////////////////////////////////
 29 kumpf  1.134 ROOT = ../..
 30 mike   1.1   
 31              include $(ROOT)/mak/config.mak
 32              
 33              DIRS = \
 34 mday   1.46      Common \
 35 thilo.boehm 1.135     General \
 36 chuck       1.78      Query/QueryCommon \
 37 kumpf       1.108     Client \
 38 mike        1.11      Config \
 39 mike        1.1       Repository \
 40 mike        1.4       getoopt \
 41 karl        1.136.2.1     WQL \
 42                       	Handler
 43 s.kodali    1.130     
 44                       ifeq ($(PEGASUS_ENABLE_CQL),true)
 45                           DIRS += CQL
 46                       endif
 47                       
 48 karl        1.136.2.1 ifeq ($(PEGASUS_ENABLE_PROTOCOL_WSMAN),true)
 49                           DIRS += \
 50                               WsmServer
 51                           TEST_DIRS += \
 52                               WsmServer/tests
 53                       endif
 54                       
 55 s.kodali    1.130     DIRS += \
 56 chuck       1.81          Query/QueryExpression \
 57 mike        1.11          Provider \
 58 s.kodali    1.129         Compiler \
 59                           Compiler/cmdline
 60                       
 61                       TEST_DIRS = \
 62                           Common/tests \
 63 thilo.boehm 1.135         General/tests \
 64 s.kodali    1.129         Client/tests \
 65                           Config/tests \
 66                           Repository/tests \
 67 kumpf       1.133         WQL/tests
 68 s.kodali    1.130     
 69                       ifeq ($(PEGASUS_ENABLE_CQL),true)
 70                           TEST_DIRS += \
 71                               CQL/tests \
 72                               CQL/CQLCLI
 73                       endif
 74                       
 75                       TEST_DIRS += \
 76 kumpf       1.108         Compiler/tests \
 77 s.kodali    1.129         Query/QueryExpression/tests \
 78 s.kodali    1.130         Query/QueryExpression/tests/Queries
 79                       
 80 kumpf       1.108     
 81                       ifneq ($(OS),HPUX)
 82 s.kodali    1.129         TEST_DIRS += \
 83 kumpf       1.108             Compiler/cmdline/tests
 84                       endif
 85                       
 86 karl        1.136.2.3 ifndef PEGASUS_PAM_AUTHENTICATION
 87                           DIRS += Security/UserManager \
 88                       	    ControlProviders/UserAuthProvider
 89                           TEST_DIRS += Security/UserManager/tests
 90                       endif
 91                       
 92                       
 93 kumpf       1.108     DIRS += \
 94                           ExportClient \
 95 kumpf       1.31          Server/ProviderRegistrationManager \
 96 kumpf       1.24          ExportServer \
 97 kumpf       1.21          Listener \
 98 mike        1.11          Security/Authentication \
 99 kumpf       1.35          ControlProviders/ConfigSettingProvider \
100 kumpf       1.36          ControlProviders/ProviderRegistrationProvider \
101 karl        1.42          ControlProviders/NamespaceProvider \
102 kumpf       1.22          HandlerService \
103 marek       1.61          IndicationService \
104 h.sterling  1.93          ManagedClient \
105 karl        1.136.2.1     DynListener
106 s.kodali    1.129     
107                       TEST_DIRS += \
108                           ExportClient/tests \
109                           Server/ProviderRegistrationManager/tests \
110                           ExportServer/tests \
111                           Listener/tests \
112                           Security/Authentication/tests \
113                           ControlProviders/ProviderRegistrationProvider/tests \
114                           HandlerService/tests \
115                           IndicationService/tests \
116 karl        1.136.2.1     DynListener/tests 
117 tony        1.60      
118 yi.zhou     1.99      ifdef PEGASUS_ENABLE_SYSTEM_LOG_HANDLER
119 yi.zhou     1.95          DIRS += \
120                               Handler/SystemLogListenerDestination
121 karl        1.136.2.1     TEST_DIRS += \
122                               Handler/SystemLogListenerDestination/tests
123 yi.zhou     1.99      endif
124                       
125                       ifdef PEGASUS_ENABLE_EMAIL_HANDLER
126 yi.zhou     1.96          DIRS += \
127                               Handler/EmailListenerDestination
128 karl        1.136.2.1     TEST_DIRS += \
129                               Handler/EmailListenerDestination/tests
130                       endif
131                       
132                       ifeq ($(PEGASUS_ENABLE_PROTOCOL_WSMAN),true)
133                           DIRS += \
134                               Handler/wsmanIndicationHandler
135                           TEST_DIRS += \
136                               Handler/wsmanIndicationHandler/tests/Destination
137 yi.zhou     1.95      endif
138                       
139 chip        1.54      DIRS += \
140 kumpf       1.108         ProviderManager2 \
141 s.kodali    1.129         ProviderManager2/Default
142                       
143                       TEST_DIRS += \
144 kumpf       1.108         ProviderManager2/tests \
145 kumpf       1.119         ProviderManager2/Default/tests
146 konrad.r    1.90      
147 denise.eckstein 1.110     ifeq ($(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER), true)
148 kumpf           1.108         DIRS += \
149                                   Provider/CMPI \
150                                   ProviderManager2/CMPI
151 schuur          1.70      endif
152                           
153 kumpf           1.108     ifdef PEGASUS_ENABLE_REMOTE_CMPI
154                           
155                               DIRS += \
156 ks.madhusudan   1.125             ProviderManager2/CMPIR/native \
157 kumpf           1.108             ProviderManager2/CMPIR \
158 r.kieninger     1.122             ProviderManager2/CMPIR/tcpcomm \
159                                   ProviderManager2/CMPIR/tcpcommrem \
160                                   ProviderManager2/CMPIR/daemon \
161                                   ProviderManager2/CMPIR/tools
162 schuur          1.63      endif
163                           
164 mark.hamzy      1.120     ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
165                               DIRS += \
166                                   ProviderManager2/JMPI
167 schuur          1.59      endif
168                           
169 kumpf           1.119     DIRS += \
170 s.kodali        1.136         ProviderManagerRouter \
171 kumpf           1.119         ProviderManagerService \
172                               ProviderManagerService/ProviderAgent
173                           
174 kumpf           1.58      ifdef PEGASUS_USE_PAM_STANDALONE_PROC
175 kumpf           1.108         DIRS += \
176                                   Security/Cimservera
177 kumpf           1.58      endif
178 marek           1.61      
179 karl            1.91      ifndef PEGASUS_DISABLE_PERFINST
180 kumpf           1.108         DIRS += \
181 s.kodali        1.129             ControlProviders/Statistic
182                               TEST_DIRS += \
183 kumpf           1.108             ControlProviders/Statistic/test
184 karl            1.100     endif
185 w.white         1.73      
186 karl            1.126     ifeq ($(PEGASUS_ENABLE_INTEROP_PROVIDER),true)
187 karl            1.100         DIRS += \
188 s.kodali        1.129             ControlProviders/InteropProvider
189                               TEST_DIRS += \
190 a.dunfey        1.123             ControlProviders/InteropProvider/tests \
191                                   ControlProviders/InteropProvider/ServerProfileTests
192 w.white         1.62      endif
193 h.sterling      1.80      
194 karl            1.127     ifeq ($(PEGASUS_ENABLE_CQL),true)
195 kumpf           1.108         DIRS += \
196 s.kodali        1.129             ControlProviders/QueryCapabilitiesProvider
197                               TEST_DIRS += \
198 kumpf           1.108             ControlProviders/QueryCapabilitiesProvider/tests
199 a.arora         1.83      endif
200                           
201 h.sterling      1.80      ifdef PEGASUS_HAS_SSL
202 kumpf           1.108         DIRS += \
203                                   ControlProviders/CertificateProvider
204 h.sterling      1.80      endif
205 r.kieninger     1.82      
206 chip            1.54      DIRS += \
207 kumpf           1.108         Server \
208 mike            1.11          Handler/CIMxmlIndicationHandler \
209 karl            1.136.2.1     Handler/FileURIHandler  \
210 humberto        1.50          msg/Server \
211 h.sterling      1.93          msg/CLI \
212 h.sterling      1.105         msg/Listener
213 mike            1.5       
214 karl            1.136.2.2 ifeq ($(PEGASUS_USE_EMANATE), true)
215 karl            1.136.2.1     DIRS += \
216                                   Handler/snmpIndicationHandler
217                           endif
218                           
219 karl            1.136.2.2 ifeq ($(PEGASUS_USE_NET_SNMP), true)
220 karl            1.136.2.1     DIRS += \
221                                   Handler/snmpIndicationHandler
222                           endif
223                           
224 s.kodali        1.129     TEST_DIRS += \
225                               Server/tests \
226 karl            1.136.2.1     Server/tests/InterfaceRestriction \
227 s.kodali        1.129         Handler/CIMxmlIndicationHandler/tests/Destination \
228 karl            1.136.2.1     Handler/FileURIHandler/tests
229                           
230 karl            1.136.2.2 ifeq ($(PEGASUS_USE_EMANATE), true)
231 karl            1.136.2.1     TEST_DIRS += \
232                                   Handler/snmpIndicationHandler/tests/testclient \
233                                   Handler/snmpIndicationHandler/tests/SnmpHandlerException
234                           endif
235                           
236 karl            1.136.2.2 
237                           ifeq ($(PEGASUS_USE_NET_SNMP), true)
238 karl            1.136.2.1     TEST_DIRS += \
239                                   Handler/snmpIndicationHandler/tests/testclient \
240                                   Handler/snmpIndicationHandler/tests/SnmpHandlerException
241                           endif
242 s.kodali        1.129     
243 karl            1.136.2.2 
244 mike            1.1       include $(ROOT)/mak/recurse.mak

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2