File: Makefile.am

package info (click to toggle)
lcmaps 1.6.6-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,020 kB
  • sloc: sh: 11,191; ansic: 9,519; makefile: 533; lex: 184; perl: 92; yacc: 60
file content (49 lines) | stat: -rw-r--r-- 1,610 bytes parent folder | download | duplicates (4)
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
#       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 17211 2013-12-06 13:26:28Z msalle $
#       Define the targets to be built here


if LCMAPS_GSI_MODE
AM_CPPFLAGS = \
	$(GLOBUS_GSSAPI_GSI_NOTHR_CFLAGS) $(GLOBUS_GSSAPI_GSI_CFLAGS) \
	-I$(top_srcdir)/interface \
	$(ADD_THESE_DEFINES)
else
AM_CPPFLAGS = \
	-I$(top_srcdir)/interface \
	$(ADD_THESE_DEFINES)
endif

PluginSources= \
	lcmaps_plugin_example.c

plugindir = $(libdir)/lcmaps
if LCMAPS_GSI_MODE
#plugin_LTLIBRARIES = liblcmaps_plugin_example.la
noinst_LTLIBRARIES = liblcmaps_plugin_example.la
liblcmaps_plugin_example_la_SOURCES = $(PluginSources)
liblcmaps_plugin_example_la_LDFLAGS = -avoid-version -rpath $(plugindir)
#install-data-hook:
#	( \
#	cd $(DESTDIR)$(plugindir); \
#	rm -f lcmaps_plugin_example.mod; \
#	ln -s liblcmaps_plugin_example@SHREXT@ lcmaps_plugin_example.mod \
#	)
else
#plugin_LTLIBRARIES = liblcmaps_plugin_example_without_gsi.la
noinst_LTLIBRARIES = liblcmaps_plugin_example_without_gsi.la
liblcmaps_plugin_example_without_gsi_la_SOURCES = $(PluginSources)
liblcmaps_plugin_example_without_gsi_la_LDFLAGS = -avoid-version -rpath $(plugindir)
#install-data-hook:
#	( \
#	cd $(DESTDIR)$(plugindir); \
#	rm -f lcmaps_plugin_example_without_gsi.mod; \
#	ln -s liblcmaps_plugin_example_without_gsi@SHREXT@ lcmaps_plugin_example_without_gsi.mod \
#	)
endif