summaryrefslogtreecommitdiffstats
path: root/python/protocols/Makefile.am
blob: 31542662a6de36a2823cf1a18c163b9232bab638 (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
SUBDIRS = elements

INCLUDES = \
	-DPACKAGE=\"@PACKAGE@\" \
	-I$(top_srcdir) \
	-I$(top_srcdir)/lasso \
	$(LASSO_DEFINES) \
	$(LASSO_CFLAGS) \
	$(PY_CFLAGS) \
	$(NULL)

PROTSOURCES = \
	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


libprotocols_la_SOURCES = $(PROTSOURCES)
noinst_LTLIBRARIES = libprotocols.la

EXTRA_DIST = \
	$(PROTSOURCES) \
	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