From 71e99e47e30fd86b4f52e0ad61096a471f245942 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Thu, 22 Jul 2004 17:00:23 +0000 Subject: usage of pkg-config to get library information in configure; automake for the python module; --- python/protocols/Makefile.am | 35 +++++++++++++++++++++++++++++++++++ python/protocols/elements/Makefile.am | 15 +++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 python/protocols/Makefile.am create mode 100644 python/protocols/elements/Makefile.am (limited to 'python/protocols') 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 -- cgit