Combined SAML versions in one session API, implemented in-process half of cache.
[shibboleth/sp.git] / shibsp / Makefile.am
1 AUTOMAKE_OPTIONS = foreign
2
3 pkgsysconfdir = $(sysconfdir)/@PACKAGE@
4 xmldir = $(datadir)/xml
5
6 lib_LTLIBRARIES = libshibsp.la
7
8 libshibspincludedir = $(includedir)/shibsp
9
10 attrincludedir = $(includedir)/shibsp/attribute
11
12 mdincludedir = $(includedir)/shibsp/metadata
13
14 remincludedir = $(includedir)/shibsp/remoting
15
16 secincludedir = $(includedir)/shibsp/security
17
18 utilincludedir = $(includedir)/shibsp/util
19
20 libshibspinclude_HEADERS = \
21         AbstractHandler.h \
22         AbstractSPRequest.h \
23         AccessControl.h \
24         Application.h \
25         base.h \
26         exceptions.h \
27         Handler.h \
28         paths.h \
29         RequestMapper.h \
30         ServiceProvider.h \
31         SessionCache.h \
32         SPConfig.h \
33         SPRequest.h \
34         version.h
35
36 attrinclude_HEADERS = \
37         attribute/Attribute.h \
38         attribute/NameIDAttribute.h \
39         attribute/ScopedAttribute.h \
40         attribute/SimpleAttribute.h
41
42 mdinclude_HEADERS = \
43         metadata/MetadataExt.h
44
45 reminclude_HEADERS = \
46         ddf.h \
47         ListenerService.h
48         
49 secinclude_HEADERS = \
50         security/PKIXTrustEngine.h
51
52 utilinclude_HEADERS = \
53         util/DOMPropertySet.h \
54         util/PropertySet.h \
55         util/SPConstants.h \
56         util/TemplateParameters.h
57
58 noinst_HEADERS = \
59         internal.h \
60         remoting/impl/SocketListener.h
61
62 libshibsp_la_SOURCES = \
63         AbstractHandler.cpp \
64         AbstractSPRequest.cpp \
65         Application.cpp \
66         ServiceProvider.cpp \
67         SessionCache.cpp \
68         SPConfig.cpp \
69         impl/RemotedSessionCache.cpp \
70         impl/StorageServiceSessionCache.cpp \
71         impl/XMLAccessControl.cpp \
72         impl/XMLRequestMapper.cpp \
73         metadata/MetadataExtImpl.cpp \
74         metadata/MetadataExtSchemaValidators.cpp \
75         remoting/impl/ddf.cpp \
76         remoting/impl/ListenerService.cpp \
77         remoting/impl/SocketListener.cpp \
78         remoting/impl/TCPListener.cpp \
79         remoting/impl/UnixListener.cpp \
80         security/PKIXTrustEngine.cpp \
81         util/DOMPropertySet.cpp \
82         util/SPConstants.cpp \
83         util/TemplateParameters.cpp
84
85 # this is different from the project version
86 # http://sources.redhat.com/autobook/autobook/autobook_91.html
87 libshibsp_la_LDFLAGS = -version-info 1:0:0
88
89 paths.h: ${srcdir}/paths.h.in Makefile ${top_builddir}/config.status
90         rm -f $@.tmp
91         sed < ${srcdir}/$@.in > $@.tmp \
92             -e 's:@-PKGSYSCONFDIR-@:${pkgsysconfdir}:' \
93             -e 's:@-XMLDIR-@:${xmldir}:'
94         cmp -s $@ $@.tmp || mv $@.tmp $@
95         rm -f $@.tmp
96
97 install-exec-hook:
98         for la in $(lib_LTLIBRARIES) ; do rm -f $(DESTDIR)$(libdir)/$$la ; done
99
100 EXTRA_DIST = shibsp.vcproj paths.h.in resource.h shibsp.rc
101 BUILT_SOURCES = paths.h