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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
sbin_PROGRAMS = lightdm
ldm-marshal.c: ldm-marshal.list
@GLIB_GENMARSHAL@ --prefix=ldm_marshal $(srcdir)/ldm-marshal.list --header --body > ldm-marshal.c
ldm-marshal.h: ldm-marshal.list
@GLIB_GENMARSHAL@ --prefix=ldm_marshal $(srcdir)/ldm-marshal.list --header > ldm-marshal.h
lightdm_SOURCES = \
configuration.c \
configuration.h \
console-kit.c \
console-kit.h \
display.c \
display.h \
display-manager.c \
display-manager.h \
display-server.c \
display-server.h \
dmrc.c \
dmrc.h \
greeter.c \
greeter.h \
guest-account.c \
guest-account.h \
lightdm.c \
ldm-marshal.c \
ldm-marshal.h \
pam-session.c \
pam-session.h \
plymouth.c \
plymouth.h \
privileges.c \
privileges.h \
process.c \
process.h \
seat.c \
seat.h \
seat-xdmcp-session.c \
seat-xdmcp-session.h \
seat-xlocal.c \
seat-xlocal.h \
seat-xremote.c \
seat-xremote.h \
seat-xvnc.c \
seat-xvnc.h \
session.c \
session.h \
user.c \
user.h \
vnc-server.c \
vnc-server.h \
vt.c \
vt.h \
xauthority.c \
xauthority.h \
xdmcp-protocol.c \
xdmcp-protocol.h \
xdmcp-server.c \
xdmcp-server.h \
xdmcp-session.c \
xdmcp-session.h \
xdmcp-session-private.h \
xserver-local.c \
xserver-local.h \
xserver-remote.c \
xserver-remote.h \
xserver-xvnc.c \
xserver-xvnc.h \
xserver.c \
xserver.h \
xsession.c \
xsession.h
BUILT_SOURCES = \
ldm-marshal.c \
ldm-marshal.h
lightdm_CFLAGS = \
$(LIGHTDM_CFLAGS) \
$(WARN_CFLAGS) \
-DPKGLIBEXEC_DIR=\"$(pkglibexecdir)\" \
-DCONFIG_DIR=\"$(sysconfdir)/lightdm\" \
-DLOG_DIR=\"$(localstatedir)/log/lightdm\" \
-DRUN_DIR=\"$(localstatedir)/run/lightdm\" \
-DCACHE_DIR=\"$(localstatedir)/cache/lightdm\" \
-DXSESSIONS_DIR=\"$(datadir)/xsessions\" \
-DXGREETERS_DIR=\"$(datadir)/xgreeters\"
lightdm_LDADD = \
$(LIGHTDM_LIBS) \
-lpam
EXTRA_DIST = ldm-marshal.list \
display-manager.xml
CLEANFILES = \
$(BUILT_SOURCES)
DISTCLEANFILES = \
Makefile.in
|