(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 dl.meetei   1.142     WQL \
 42                   	Handler
 43 s.kodali    1.130 
 44                   ifeq ($(PEGASUS_ENABLE_CQL),true)
 45                       DIRS += CQL
 46                   endif
 47                   
 48 anusha.kandepu 1.138 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                      DIRS += \
 87                          ExportClient \
 88 kumpf          1.31      Server/ProviderRegistrationManager \
 89 kumpf          1.24      ExportServer \
 90 kumpf          1.21      Listener \
 91 mike           1.11      Security/UserManager \
 92                          Security/Authentication \
 93 kumpf          1.35      ControlProviders/ConfigSettingProvider \
 94                          ControlProviders/UserAuthProvider \
 95 kumpf          1.36      ControlProviders/ProviderRegistrationProvider \
 96 karl           1.42      ControlProviders/NamespaceProvider \
 97 kumpf          1.22      HandlerService \
 98 marek          1.61      IndicationService \
 99 h.sterling     1.93      ManagedClient \
100 dl.meetei      1.142     DynListener
101 s.kodali       1.129 
102                      TEST_DIRS += \
103                          ExportClient/tests \
104                          Server/ProviderRegistrationManager/tests \
105                          ExportServer/tests \
106                          Listener/tests \
107                          Security/UserManager/tests \
108                          Security/Authentication/tests \
109                          ControlProviders/ProviderRegistrationProvider/tests \
110                          HandlerService/tests \
111                          IndicationService/tests \
112 dl.meetei      1.142     DynListener/tests 
113 tony           1.60  
114 s.kodali       1.129 
115 yi.zhou        1.99  ifdef PEGASUS_ENABLE_SYSTEM_LOG_HANDLER
116 yi.zhou        1.95      DIRS += \
117                              Handler/SystemLogListenerDestination
118 dev.meetei     1.139     TEST_DIRS += \
119                              Handler/SystemLogListenerDestination/tests
120 yi.zhou        1.99  endif
121                      
122                      ifdef PEGASUS_ENABLE_EMAIL_HANDLER
123 yi.zhou        1.96      DIRS += \
124                              Handler/EmailListenerDestination
125 dev.meetei     1.139     TEST_DIRS += \
126                              Handler/EmailListenerDestination/tests
127 yi.zhou        1.95  endif
128                      
129 anusha.kandepu 1.138 ifeq ($(PEGASUS_ENABLE_PROTOCOL_WSMAN),true)
130                          DIRS += \
131                              Handler/wsmanIndicationHandler
132                          TEST_DIRS += \
133                              Handler/wsmanIndicationHandler/tests/Destination
134                      endif
135                      
136 chip           1.54  DIRS += \
137 kumpf          1.108     ProviderManager2 \
138 s.kodali       1.129     ProviderManager2/Default
139                      
140                      TEST_DIRS += \
141 kumpf          1.108     ProviderManager2/tests \
142 kumpf          1.119     ProviderManager2/Default/tests
143 konrad.r       1.90  
144 denise.eckstein 1.110 ifeq ($(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER), true)
145 kumpf           1.108     DIRS += \
146                               Provider/CMPI \
147                               ProviderManager2/CMPI
148 schuur          1.70  endif
149                       
150 kumpf           1.108 ifdef PEGASUS_ENABLE_REMOTE_CMPI
151                       
152                           DIRS += \
153 ks.madhusudan   1.125         ProviderManager2/CMPIR/native \
154 kumpf           1.108         ProviderManager2/CMPIR \
155 r.kieninger     1.122         ProviderManager2/CMPIR/tcpcomm \
156                               ProviderManager2/CMPIR/tcpcommrem \
157                               ProviderManager2/CMPIR/daemon \
158                               ProviderManager2/CMPIR/tools
159 schuur          1.63  endif
160                       
161 mark.hamzy      1.120 ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
162                           DIRS += \
163                               ProviderManager2/JMPI
164 schuur          1.59  endif
165                       
166 kumpf           1.119 DIRS += \
167 s.kodali        1.136     ProviderManagerRouter \
168 kumpf           1.119     ProviderManagerService \
169                           ProviderManagerService/ProviderAgent
170                       
171 kumpf           1.58  ifdef PEGASUS_USE_PAM_STANDALONE_PROC
172 kumpf           1.108     DIRS += \
173                               Security/Cimservera
174 kumpf           1.58  endif
175 marek           1.61  
176 karl            1.91  ifndef PEGASUS_DISABLE_PERFINST
177 kumpf           1.108     DIRS += \
178 s.kodali        1.129         ControlProviders/Statistic
179                           TEST_DIRS += \
180 kumpf           1.108         ControlProviders/Statistic/test
181 karl            1.100 endif
182 w.white         1.73  
183 karl            1.126 ifeq ($(PEGASUS_ENABLE_INTEROP_PROVIDER),true)
184 karl            1.100     DIRS += \
185 s.kodali        1.129         ControlProviders/InteropProvider
186                           TEST_DIRS += \
187 a.dunfey        1.123         ControlProviders/InteropProvider/tests \
188                               ControlProviders/InteropProvider/ServerProfileTests
189 w.white         1.62  endif
190 h.sterling      1.80  
191 karl            1.127 ifeq ($(PEGASUS_ENABLE_CQL),true)
192 kumpf           1.108     DIRS += \
193 s.kodali        1.129         ControlProviders/QueryCapabilitiesProvider
194                           TEST_DIRS += \
195 kumpf           1.108         ControlProviders/QueryCapabilitiesProvider/tests
196 a.arora         1.83  endif
197                       
198 h.sterling      1.80  ifdef PEGASUS_HAS_SSL
199 kumpf           1.108     DIRS += \
200                               ControlProviders/CertificateProvider
201 h.sterling      1.80  endif
202 r.kieninger     1.82  
203 chip            1.54  DIRS += \
204 kumpf           1.108     Server \
205 mike            1.11      Handler/CIMxmlIndicationHandler \
206 dl.meetei       1.142     Handler/FileURIHandler  \
207 humberto        1.50      msg/Server \
208 h.sterling      1.93      msg/CLI \
209 h.sterling      1.105     msg/Listener
210 mike            1.5   
211 amit99shah      1.141 ifdef PEGASUS_USE_EMANATE
212                           DIRS += \
213                               Handler/snmpIndicationHandler
214                       endif
215                       
216                       ifdef PEGASUS_USE_NET_SNMP
217                           DIRS += \
218                               Handler/snmpIndicationHandler
219                       endif
220                       
221 s.kodali        1.129 TEST_DIRS += \
222                           Server/tests \
223 dev.meetei      1.137     Server/tests/InterfaceRestriction \
224 dl.meetei       1.142     Handler/CIMxmlIndicationHandler/tests/Destination \
225                           Handler/FileURIHandler/tests
226 amit99shah      1.141 
227                       ifdef PEGASUS_USE_EMANATE
228                           TEST_DIRS += \
229                               Handler/snmpIndicationHandler/tests/testclient \
230                               Handler/snmpIndicationHandler/tests/SnmpHandlerException
231                       endif
232                       
233                       ifdef PEGASUS_USE_NET_SNMP
234                           TEST_DIRS += \
235                               Handler/snmpIndicationHandler/tests/testclient \
236                               Handler/snmpIndicationHandler/tests/SnmpHandlerException
237                       endif
238 s.kodali        1.129 
239 mike            1.1   include $(ROOT)/mak/recurse.mak

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2