~ubuntu-branches/ubuntu/oneiric/gdm3/oneiric

« back to all changes in this revision

Viewing changes to tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2010-03-25 20:02:20 UTC
  • Revision ID: james.westby@ubuntu.com-20100325200220-12cap62s6p304nuh
Tags: upstream-2.29.92
ImportĀ upstreamĀ versionĀ 2.29.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
NULL =
 
2
 
 
3
AM_CPPFLAGS =                   \
 
4
        -I.                     \
 
5
        -I..                    \
 
6
        -I$(top_srcdir)/common  \
 
7
        $(COMMON_CFLAGS)        \
 
8
        $(NULL)
 
9
 
 
10
TESTS =                         \
 
11
        m-common                \
 
12
        $(NULL)
 
13
 
 
14
if HAVE_CHECK
 
15
noinst_PROGRAMS =               \
 
16
        $(TESTS)                \
 
17
        $(NULL)
 
18
endif
 
19
 
 
20
m_common_SOURCES =              \
 
21
        m-common.c              \
 
22
        s-common-address.c      \
 
23
        s-common-address.h      \
 
24
        s-common-utils.c        \
 
25
        s-common-utils.h        \
 
26
        $(NULL)
 
27
 
 
28
m_common_CFLAGS =               \
 
29
        @CHECK_CFLAGS@          \
 
30
        $(COMMON_CFLAGS)        \
 
31
        $(NULL)
 
32
 
 
33
m_common_LDADD =                \
 
34
        $(top_builddir)/common/libgdmcommon.la  \
 
35
        @CHECK_LIBS@            \
 
36
        $(COMMON_LIBS)          \
 
37
        $(EXTRA_TEST_LIBS)      \
 
38
        $(NULL)
 
39