blob: cc6b0e11228981081435da8a293886099cc67b93 (
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
|
## Process this file with automake to produce Makefile.in
NULL =
INCLUDES = \
-I. \
-I.. \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DAUTHDIR=\"$(authdir)\" \
-DBINDIR=\"$(bindir)\" \
-DDATADIR=\"$(datadir)\" \
-DDMCONFDIR=\"$(dmconfdir)\" \
-DGDMCONFDIR=\"$(gdmconfdir)\" \
-DGDMLOCALEDIR=\"$(gdmlocaledir)\" \
-DLIBDIR=\"$(libdir)\" \
-DLIBEXECDIR=\"$(libexecdir)\" \
-DLOGDIR=\"$(logdir)\" \
-DPIXMAPDIR=\"$(pixmapdir)\" \
-DSBINDIR=\"$(sbindir)\" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DGDM_DEFAULTS_CONF=\"$(GDM_DEFAULTS_CONF)\" \
-DGDM_CUSTOM_CONF=\"$(GDM_CUSTOM_CONF)\" \
-DGDM_OLD_CONF=\"$(GDM_OLD_CONF)\" \
$(GLIB_CFLAGS)
noinst_LIBRARIES = \
libgdmcommon.a \
$(null)
libgdmcommon_a_SOURCES = \
gdm-address.h \
gdm-address.c \
gdm-common.h \
gdm-common.c \
gdm-common-config.h \
gdm-common-config.c \
gdm-config.h \
gdm-config.c \
gdm-log.h \
gdm-log.c \
ve-signal.h \
ve-signal.c \
$(NULL)
noinst_PROGRAMS = \
test-config \
test-log \
$(NULL)
test_config_SOURCES = \
$(top_builddir)/daemon/gdm-daemon-config-entries.h \
test-config.c \
$(NULL)
test_config_LDADD = \
libgdmcommon.a \
$(GLIB_LIBS) \
$(NULL)
test_log_SOURCES = \
test-log.c \
$(NULL)
test_log_LDADD = \
libgdmcommon.a \
$(GLIB_LIBS) \
$(NULL)
|