aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 823efdd71b464f696c00eea4c269cf79eef8da97 (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
pkglibexec_PROGRAMS = \
	remote-logon-service

EXTRA_DIST = \
	org.ArcticaProject.RemoteLogon.xml

noinst_LTLIBRARIES = \
	libservers.la \
	libgenerated.la

################################
# libgenerated
################################

libgenerated_la_SOURCES = \
	remote-logon.c \
	remote-logon.h
libgenerated_la_CFLAGS = \
	$(SERVICE_CFLAGS)
$(libgenerated_la_SOURCES): org.ArcticaProject.RemoteLogon.xml
	gdbus-codegen \
		--interface-prefix org.ArcticaProject \
		--generate-c remote-logon \
		$^

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="\"remote-logon-config-agent\"" \
	$(SERVICE_CFLAGS) \
	$(COVERAGE_CFLAGS)
libservers_la_LDFLAGS = \
	$(COVERAGE_LDFLAGS) $(GCRYPT_LIBS) -lm

################################
# remote-logon-service
################################

remote_logon_service_CFLAGS = \
	-DDEFAULT_CONFIG_FILE="\"$(sysconfdir)/remote-logon-service.conf\"" \
	$(SERVICE_CFLAGS) \
	$(COVERAGE_CFLAGS)
remote_logon_service_LDADD = \
	$(builddir)/libservers.la \
	$(builddir)/libgenerated.la \
	$(SERVICE_LIBS)
remote_logon_service_LDFLAGS = \
	$(COVERAGE_LDFLAGS)
remote_logon_service_SOURCES = \
	main.c