summaryrefslogtreecommitdiffstats
path: root/python/protocols
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/protocols
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/protocols')
-rw-r--r--python/protocols/Makefile.am35
-rw-r--r--python/protocols/elements/Makefile.am15
2 files changed, 50 insertions, 0 deletions
diff --git a/python/protocols/Makefile.am b/python/protocols/Makefile.am
new file mode 100644
index 00000000..3401e473
--- /dev/null
+++ b/python/protocols/Makefile.am
@@ -0,0 +1,35 @@
+SUBDIRS = elements
+
+INCLUDES = \
+ -DPACKAGE=\"@PACKAGE@\" \
+ -I$(top_srcdir) \
+ -I$(top_srcdir)/lasso \
+ $(LASSO_DEFINES) \
+ $(LASSO_CFLAGS) \
+ $(PY_CFLAGS) \
+ $(NULL)
+
+noinst_LIBRARIES = libprotocols.a
+
+libprotocols_a_SOURCES = \
+ py_authn_request.c \
+ py_authn_response.c \
+ py_federation_termination_notification.c \
+ py_logout_request.c \
+ py_logout_response.c \
+ py_name_identifier_mapping_request.c \
+ py_name_identifier_mapping_response.c \
+ py_register_name_identifier_request.c \
+ py_register_name_identifier_response.c
+
+EXTRA_DIST = \
+ py_authn_request.h \
+ py_authn_response.h \
+ py_federation_termination_notification.h \
+ py_logout_request.h \
+ py_logout_response.h \
+ py_name_identifier_mapping_request.h \
+ py_name_identifier_mapping_response.h \
+ py_register_name_identifier_request.h \
+ py_register_name_identifier_response.h
+
diff --git a/python/protocols/elements/Makefile.am b/python/protocols/elements/Makefile.am
new file mode 100644
index 00000000..047fede8
--- /dev/null
+++ b/python/protocols/elements/Makefile.am
@@ -0,0 +1,15 @@
+noinst_LIBRARIES = libelements.a
+
+INCLUDES = \
+ -DPACKAGE=\"@PACKAGE@\" \
+ -I$(top_srcdir) \
+ -I$(top_srcdir)/lasso \
+ $(LASSO_DEFINES) \
+ $(LASSO_CFLAGS) \
+ $(PY_CFLAGS) \
+ $(NULL)
+
+noinst_LIBRARIES = libelements.a
+libelements_a_SOURCES = py_assertion.c py_authentication_statement.c
+
+EXTRA_DIST = py_assertion.h py_authentication_statement.h