~ubuntu-branches/ubuntu/quantal/lightdm/quantal

1.1.9 by Robert Ancell
Import upstream version 0.9.2
1
sbin_PROGRAMS = lightdm
1 by Robert Ancell
Import upstream version 0.2.2
2
3
ldm-marshal.c: ldm-marshal.list
4
	@GLIB_GENMARSHAL@ --prefix=ldm_marshal $(srcdir)/ldm-marshal.list --header --body > ldm-marshal.c
5
6
ldm-marshal.h: ldm-marshal.list
7
	@GLIB_GENMARSHAL@ --prefix=ldm_marshal $(srcdir)/ldm-marshal.list --header > ldm-marshal.h
8
9
lightdm_SOURCES = \
1.1.14 by Robert Ancell
Import upstream version 1.0.0
10
	accounts.c \
11
	accounts.h \
1.1.5 by Robert Ancell
Import upstream version 0.4.0
12
	configuration.c \
13
	configuration.h \
1.1.11 by Robert Ancell
Import upstream version 0.9.5
14
	console-kit.c \
15
	console-kit.h \
1 by Robert Ancell
Import upstream version 0.2.2
16
	display.c \
17
	display.h \
18
	display-manager.c \
19
	display-manager.h \
1.1.9 by Robert Ancell
Import upstream version 0.9.2
20
	display-server.c \
21
	display-server.h \
1.1.5 by Robert Ancell
Import upstream version 0.4.0
22
	dmrc.c \
23
	dmrc.h \
1.1.2 by Robert Ancell
Import upstream version 0.3.5
24
	greeter.c \
25
	greeter.h \
1.1.6 by Robert Ancell
Import upstream version 0.4.1
26
	guest-account.c \
27
	guest-account.h \
1 by Robert Ancell
Import upstream version 0.2.2
28
	lightdm.c \
29
	ldm-marshal.c \
30
	ldm-marshal.h \
1.1.9 by Robert Ancell
Import upstream version 0.9.2
31
	plymouth.c \
32
	plymouth.h \
1.1.12 by Robert Ancell
Import upstream version 0.9.6
33
	privileges.c \
34
	privileges.h \
1.1.9 by Robert Ancell
Import upstream version 0.9.2
35
	process.c \
36
	process.h \
37
	seat.c \
38
	seat.h \
39
	seat-xdmcp-session.c \
40
	seat-xdmcp-session.h \
41
	seat-xlocal.c \
42
	seat-xlocal.h \
26 by Sebastien Bacher
* Updated to current trunk, that's a candidate version version for the next
43
	seat-xremote.c \
44
	seat-xremote.h \
1.1.12 by Robert Ancell
Import upstream version 0.9.6
45
	seat-xvnc.c \
46
	seat-xvnc.h \
1 by Robert Ancell
Import upstream version 0.2.2
47
	session.c \
48
	session.h \
1.1.23 by Sebastien Bacher
Import upstream version 1.1.6
49
	session-child.c \
50
	session-child.h \
1.1.12 by Robert Ancell
Import upstream version 0.9.6
51
	vnc-server.c \
52
	vnc-server.h \
1.1.7 by Robert Ancell
Import upstream version 0.4.2
53
	vt.c \
54
	vt.h \
1.1.9 by Robert Ancell
Import upstream version 0.9.2
55
	xauthority.c \
56
	xauthority.h \
1 by Robert Ancell
Import upstream version 0.2.2
57
	xdmcp-protocol.c \
58
	xdmcp-protocol.h \
59
	xdmcp-server.c \
60
	xdmcp-server.h \
61
	xdmcp-session.c \
62
	xdmcp-session.h \
63
	xdmcp-session-private.h \
1.1.9 by Robert Ancell
Import upstream version 0.9.2
64
	xserver-local.c \
65
	xserver-local.h \
66
	xserver-remote.c \
67
	xserver-remote.h \
1.1.12 by Robert Ancell
Import upstream version 0.9.6
68
	xserver-xvnc.c \
69
	xserver-xvnc.h \
1 by Robert Ancell
Import upstream version 0.2.2
70
	xserver.c \
1.1.9 by Robert Ancell
Import upstream version 0.9.2
71
	xserver.h \
72
	xsession.c \
73
	xsession.h
1 by Robert Ancell
Import upstream version 0.2.2
74
75
BUILT_SOURCES = \
76
	ldm-marshal.c \
77
	ldm-marshal.h
78
79
lightdm_CFLAGS = \
80
	$(LIGHTDM_CFLAGS) \
81
	$(WARN_CFLAGS) \
1.1.10 by Sebastien Bacher
Import upstream version 0.9.3
82
	-DPKGLIBEXEC_DIR=\"$(pkglibexecdir)\" \
1.1.14 by Robert Ancell
Import upstream version 1.0.0
83
	-DSBIN_DIR=\"$(sbindir)\" \
1.1.9 by Robert Ancell
Import upstream version 0.9.2
84
	-DCONFIG_DIR=\"$(sysconfdir)/lightdm\" \
85
	-DLOG_DIR=\"$(localstatedir)/log/lightdm\" \
86
	-DRUN_DIR=\"$(localstatedir)/run/lightdm\" \
87
	-DCACHE_DIR=\"$(localstatedir)/cache/lightdm\" \
88
	-DXSESSIONS_DIR=\"$(datadir)/xsessions\" \
1.1.31 by Robert Ancell
Import upstream version 1.3.3
89
	-DREMOTE_SESSIONS_DIR=\"$(pkgdatadir)/remote-sessions\" \
1.1.9 by Robert Ancell
Import upstream version 0.9.2
90
	-DXGREETERS_DIR=\"$(datadir)/xgreeters\"
1 by Robert Ancell
Import upstream version 0.2.2
91
92
lightdm_LDADD = \
93
	$(LIGHTDM_LIBS) \
94
	-lpam
95
1.1.18 by Sebastien Bacher
Import upstream version 1.1.1
96
pkglibexec_PROGRAMS = lightdm-guest-session-wrapper
1.1.16 by Robert Ancell
Import upstream version 1.0.5
97
98
lightdm_guest_session_wrapper_SOURCES = lightdm-guest-session-wrapper.c
99
100
lightdm_guest_session_wrapper_CFLAGS = \
101
	$(LIGHTDM_CFLAGS) \
102
	$(WARN_CFLAGS)
103
1 by Robert Ancell
Import upstream version 0.2.2
104
EXTRA_DIST = ldm-marshal.list \
1.1.5 by Robert Ancell
Import upstream version 0.4.0
105
	display-manager.xml
1 by Robert Ancell
Import upstream version 0.2.2
106
107
CLEANFILES = \
108
	$(BUILT_SOURCES)
109
110
DISTCLEANFILES = \
111
	Makefile.in