~darkxst/ubuntu/saucy/gdm/lp1212408

« back to all changes in this revision

Viewing changes to common/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2008-09-02 10:37:20 UTC
  • mfrom: (1.4.27 upstream)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: james.westby@ubuntu.com-20080902103720-p810vv530hqj45wg
Tags: 2.20.7-3
* Install the debian-moreblue-orbit theme, thanks Andre Luiz Rodrigues 
  Ferreira. Closes: #497440.
* 35_gdm.conf.patch: make it the default.
* copyright: fix encoding.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
NULL =
 
4
 
 
5
INCLUDES = \
 
6
        -I.                                     \
 
7
        -I..                                    \
 
8
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
 
9
        -DAUTHDIR=\"$(authdir)\"                        \
 
10
        -DBINDIR=\"$(bindir)\"                          \
 
11
        -DDATADIR=\"$(datadir)\"                        \
 
12
        -DDMCONFDIR=\"$(dmconfdir)\"                    \
 
13
        -DGDMCONFDIR=\"$(gdmconfdir)\"                  \
 
14
        -DGDMLOCALEDIR=\"$(gdmlocaledir)\"              \
 
15
        -DLIBDIR=\"$(libdir)\"                          \
 
16
        -DLIBEXECDIR=\"$(libexecdir)\"                  \
 
17
        -DLOGDIR=\"$(logdir)\"                          \
 
18
        -DPIXMAPDIR=\"$(pixmapdir)\"                    \
 
19
        -DSBINDIR=\"$(sbindir)\"                        \
 
20
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
21
        -DGDM_DEFAULTS_CONF=\"$(GDM_DEFAULTS_CONF)\"    \
 
22
        -DGDM_CUSTOM_CONF=\"$(GDM_CUSTOM_CONF)\"        \
 
23
        -DGDM_OLD_CONF=\"$(GDM_OLD_CONF)\"              \
 
24
        $(GLIB_CFLAGS)
 
25
 
 
26
noinst_LIBRARIES =              \
 
27
        libgdmcommon.a          \
 
28
        $(null)
 
29
 
 
30
libgdmcommon_a_SOURCES =        \
 
31
        gdm-common.h            \
 
32
        gdm-common.c            \
 
33
        gdm-common-config.h     \
 
34
        gdm-common-config.c     \
 
35
        gdm-config.h            \
 
36
        gdm-config.c            \
 
37
        gdm-log.h               \
 
38
        gdm-log.c               \
 
39
        ve-signal.h             \
 
40
        ve-signal.c             \
 
41
        $(NULL)
 
42
 
 
43
noinst_PROGRAMS =               \
 
44
        test-config             \
 
45
        test-log                \
 
46
        $(NULL)
 
47
 
 
48
test_config_SOURCES =           \
 
49
        $(top_builddir)/daemon/gdm-daemon-config-entries.h      \
 
50
        test-config.c           \
 
51
        $(NULL)
 
52
 
 
53
test_config_LDADD =             \
 
54
        libgdmcommon.a  \
 
55
        $(GLIB_LIBS)            \
 
56
        $(NULL)
 
57
 
 
58
test_log_SOURCES =              \
 
59
        test-log.c              \
 
60
        $(NULL)
 
61
 
 
62
test_log_LDADD =                \
 
63
        libgdmcommon.a  \
 
64
        $(GLIB_LIBS)            \
 
65
        $(NULL)