summaryrefslogtreecommitdiffstats
path: root/python/xml
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2004-07-22 17:00:23 +0000
committerFrederic Peters <fpeters@entrouvert.com>2004-07-22 17:00:23 +0000
commit71e99e47e30fd86b4f52e0ad61096a471f245942 (patch)
tree301f552a078c6448527ccf67436d908641bd9da7 /python/xml
parentbc8081c0cd2378aefe1bdf69ab2a158ce9b35f5c (diff)
downloadlasso-71e99e47e30fd86b4f52e0ad61096a471f245942.tar.gz
lasso-71e99e47e30fd86b4f52e0ad61096a471f245942.tar.xz
lasso-71e99e47e30fd86b4f52e0ad61096a471f245942.zip
usage of pkg-config to get library information in configure; automake for the
python module;
Diffstat (limited to 'python/xml')
-rw-r--r--python/xml/Makefile.am43
1 files changed, 43 insertions, 0 deletions
diff --git a/python/xml/Makefile.am b/python/xml/Makefile.am
new file mode 100644
index 00000000..9a3fffed
--- /dev/null
+++ b/python/xml/Makefile.am
@@ -0,0 +1,43 @@
+noinst_LIBRARIES = libxml.a
+
+INCLUDES = \
+ -DPACKAGE=\"@PACKAGE@\" \
+ -I$(top_srcdir) \
+ -I$(top_srcdir)/lasso \
+ $(LASSO_DEFINES) \
+ $(LASSO_CFLAGS) \
+ $(PY_CFLAGS) \
+ $(NULL)
+
+noinst_LIBRARIES = libxml.a
+
+libxml_a_SOURCES = \
+ 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
+
+EXTRA_DIST = \
+ 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
+