blob: 0f20b02c87aafcf260ac737d3f9544e5830e62e9 (
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
44
45
46
47
48
49
|
MAINTAINERCLEANFILES = Makefile.in
liblassoincludedir = $(includedir)/lasso/id-ff
INCLUDES = \
-I$(top_builddir) \
-I$(top_srcdir) \
$(LASSO_CORE_CFLAGS) \
-DG_LOG_DOMAIN=\"lasso\"
noinst_LTLIBRARIES = liblasso-id-ff.la
liblasso_id_ff_la_SOURCES = \
defederation.c \
federation.c \
identity.c \
lecp.c \
login.c \
logout.c \
name_identifier_mapping.c \
name_registration.c \
profile.c \
provider.c \
session.c \
server.c
lasso_private_h_sources = \
identityprivate.h \
profileprivate.h \
providerprivate.h \
serverprivate.h \
sessionprivate.h \
logoutprivate.h \
loginprivate.h
liblassoinclude_HEADERS = \
defederation.h \
federation.h \
identity.h \
lecp.h \
login.h \
logout.h \
name_identifier_mapping.h \
name_registration.h \
profile.h \
provider.h \
server.h \
session.h
EXTRA_DIST = $(lasso_private_h_sources)
|