1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
/*
* Copyright (C) 1993-2005 by CERN/IT/PDP/DM
* All rights reserved
*/
/*
* @(#)$RCSfile: Library.tmpl,v $ $Revision: 1.5 $ $Date: 2006/12/21 10:03:38 $ CERN IT-PDP/DM Jean-Philippe Baud
*/
#if BuildInterfaces && BuildNameServerAsLFC
#define BuildNameServerLibrary YES
#endif
#if BuildInterfaces && BuildNameServerAsDPNS
#define BuildNameServerLibrary YES
#endif
#if BuildDLI
#if BuildNameServerClient != YES && BuildNameServerLibrary != YES
#define BuildNameServerLibrary YES
#endif
#endif
#if BuildSRMv1Server
#if BuildDPMClient != YES
#define BuildDPMClient YES
#endif
#if BuildNameServerClient != YES
#define BuildNameServerClient YES
#endif
#endif
#if BuildSRMv2Server
#if BuildDPMClient != YES
#define BuildDPMClient YES
#endif
#if BuildNameServerClient != YES
#define BuildNameServerClient YES
#endif
#endif
#if BuildSRMv2_2Server
#if BuildDPMClient != YES
#define BuildDPMClient YES
#endif
#if BuildNameServerClient != YES
#define BuildNameServerClient YES
#endif
#endif
#if BuildRfioClient || BuildRfioServer
#if BuildDPMClient != YES
#define BuildDPMClient YES
#endif
#endif
#if BuildDPMClient || BuildDPMServer
#if BuildDPMClient
DPMLIB = DepLibraryTargetName(dpm,dpm)
#endif
#if BuildCommon != YES
#define BuildCommon YES
#endif
#if BuildDPMServer
#if BuildNameServerClient != YES
#define BuildNameServerClient YES
#endif
#if BuildRfioClient != YES
#define BuildRfioClient YES
#endif
#endif
#endif
#if BuildRfioClient
RFIOLIB = DepLibraryTargetName(rfio,rfio)
#if BuildCommon != YES
#define BuildCommon YES
#endif
#if BuildNameServerClient != YES && BuildNameServerLibrary != YES
#define BuildNameServerLibrary YES
#endif
#endif
#if BuildNameServerClient || BuildNameServerLibrary
NSLIB = DepLibraryTargetName(ns,ns)
#if BuildCommon != YES
#define BuildCommon YES
#endif
#endif
#if BuildSecurity
SECURITYLIB = DepLibraryTargetName(security,security)
#if BuildCommon != YES
#define BuildCommon YES
#endif
#endif
#if BuildCommon
COMMONLIB = DepLibraryTargetName(common,common)
#endif
|