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
|
# Copyright (c) Members of the EGEE Collaboration. 2004.
# See http://eu-egee.org/partners/ for details on the copyright holders.
# For license conditions see the license file or
# http://eu-egee.org/license.html
#
# Authors: Martijn Steenbakkers <martijn@nikhef.nl>
#
# $Id: Makefile.am 17210 2013-12-05 17:12:28Z msalle $
# Define the targets to be built here
pkgconfigdir = $(datadir)/pkgconfig
pkgconfig_DATA = \
lcmaps-interface.pc \
lcmaps-globus-interface.pc \
lcmaps-openssl-interface.pc \
lcmaps-basic-interface.pc
#if LCMAPS_GSI_MODE
#Lcmapsincludedir = $(includedir)/lcmaps
#LcmapsAPIHeaders= \
# lcmaps_return_poolindex.h \
# lcmaps_gss_assist_gridmap.h \
# lcmaps_return_account_from_pem.h \
# lcmaps_verify_account_from_pem.h \
# lcmaps_account.h \
# lcmaps_types.h \
# lcmaps_setup.h \
# lcmaps.h
#else
#Lcmapsincludedir = $(includedir)/lcmaps
#LcmapsAPIHeaders= \
# lcmaps_return_poolindex_without_gsi.h \
# lcmaps_gss_assist_gridmap.h \
# lcmaps_account.h \
# lcmaps_types.h \
# lcmaps_setup.h \
# lcmaps.h
#endif
Lcmapsincludedir = $(includedir)/lcmaps
LcmapsAPIHeaders= \
lcmaps_return_poolindex.h \
_lcmaps_return_poolindex.h \
lcmaps_return_poolindex_without_gsi.h \
lcmaps_gss_assist_gridmap.h \
_lcmaps_gss_assist_gridmap.h \
lcmaps_return_account_from_pem.h \
_lcmaps_return_account_from_pem.h \
lcmaps_verify_account_from_pem.h \
_lcmaps_verify_account_from_pem.h \
lcmaps_account.h \
lcmaps_types.h \
lcmaps.h \
_lcmaps.h \
lcmaps_if.h \
lcmaps_basic.h \
lcmaps_openssl.h \
lcmaps_globus.h
LcmapsLibHeaders= \
lcmaps_vo_data.h \
lcmaps_db_read.h \
lcmaps_arguments.h \
lcmaps_cred_data.h \
lcmaps_modules.h \
lcmaps_defines.h \
lcmaps_utils.h \
lcmaps_log.h
LcmapsPluginHeaders= \
lcmaps_plugin_typedefs.h \
lcmaps_plugin_prototypes.h
Lcmapsinclude_HEADERS=\
$(LcmapsLibHeaders) \
$(LcmapsAPIHeaders) \
$(LcmapsPluginHeaders)
EXTRA_DIST = lcmaps_version.h.in
nodist_Lcmapsinclude_HEADERS=lcmaps_version.h
# noinst_HEADERS = lcmaps_types.h lcmaps_account.h
MAINTAINERCLEANFILES = Makefile.in
|