blob: 42e0b0453f7e64adbc0778d5ce3a21682590610d (
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
|
liblassoincludedir = $(includedir)/lasso/id-ff
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/lasso \
$(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 \
server.c \
service.c \
session.c
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 \
service.h \
session.h
|