blob: 17bbef15087e2d4b01f2e80a31a19fb8a2597250 (
plain)
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
|
XMLSOURCES = \
py_lib_authentication_statement.c \
py_lib_authn_request.c \
py_lib_federation_termination_notification.c \
py_lib_logout_request.c \
py_lib_logout_response.c \
py_lib_name_identifier_mapping_request.c \
py_lib_name_identifier_mapping_response.c \
py_lib_register_name_identifier_request.c \
py_saml_assertion.c \
py_saml_authentication_statement.c \
py_saml_name_identifier.c \
py_samlp_response.c \
py_xml.c
noinst_LIBRARIES = libxml.a
libxml_a_SOURCES = $(XMLSOURCES)
INCLUDES = \
-DPACKAGE=\"@PACKAGE@\" \
-I$(top_srcdir) \
-I$(top_srcdir)/lasso \
$(LASSO_DEFINES) \
$(LASSO_CFLAGS) \
$(PY_CFLAGS) \
$(NULL)
EXTRA_DIST = \
$(XMLSOURCES) \
py_lib_authentication_statement.h \
py_lib_authn_request.h \
py_lib_federation_termination_notification.h \
py_lib_logout_request.h \
py_lib_logout_response.h \
py_lib_name_identifier_mapping_request.h \
py_lib_name_identifier_mapping_response.h \
py_lib_register_name_identifier_request.h \
py_saml_assertion.h \
py_saml_authentication_statement.h \
py_saml_name_identifier.h \
py_samlp_response.h \
py_xml.h
|