blob: b5f5d5bfcb8f86fc45bbc486abf3a9ae1ac4179b (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
pkglibexec_PROGRAMS = \
remote-login-service
EXTRA_DIST = \
com.canonical.RemoteLogin.xml
noinst_LTLIBRARIES = \
libservers.la \
libgenerated.la
################################
# libgenerated
################################
libgenerated_la_SOURCES = \
remote-login.c \
remote-login.h
libgenerated_la_CFLAGS = \
$(SERVICE_CFLAGS)
$(libgenerated_la_SOURCES): com.canonical.RemoteLogin.xml
gdbus-codegen \
--interface-prefix com.canonical \
--generate-c remote-login \
$^
BUILT_SOURCES = $(libgenerated_la_SOURCES)
CLEANFILES = $(BUILT_SOURCES)
################################
# libservers
################################
libservers_la_SOURCES = \
citrix-server.c \
citrix-server.h \
rdp-server.c \
rdp-server.h \
x2go-server.c \
x2go-server.h \
uccs-server.c \
uccs-server.h \
defines.h \
server.c \
server.h \
crypt.c \
crypt.h
libservers_la_CFLAGS = \
-DUCCS_QUERY_TOOL="\"thin-client-config-agent\"" \
$(SERVICE_CFLAGS) \
$(COVERAGE_CFLAGS)
libservers_la_LDFLAGS = \
$(COVERAGE_LDFLAGS) $(GCRYPT_LIBS) -lm
################################
# remote-login-service
################################
remote_login_service_CFLAGS = \
-DDEFAULT_CONFIG_FILE="\"$(sysconfdir)/remote-login-service.conf\"" \
$(SERVICE_CFLAGS) \
$(COVERAGE_CFLAGS)
remote_login_service_LDADD = \
$(builddir)/libservers.la \
$(builddir)/libgenerated.la \
$(SERVICE_LIBS)
remote_login_service_LDFLAGS = \
$(COVERAGE_LDFLAGS)
remote_login_service_SOURCES = \
main.c
|