~ubuntu-branches/ubuntu/vivid/atk1.0/vivid-proposed

« back to all changes in this revision

Viewing changes to tests/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich
  • Date: 2013-08-27 07:52:22 UTC
  • mfrom: (1.4.9) (11.2.12 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130827075222-59k70z0310f06jbb
* New upstream release
* Update symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
no_undefined =
5
5
endif
6
6
 
7
 
noinst_LTLIBRARIES =  \
8
 
        libteststateset.la      \
9
 
        libtestrelation.la
10
 
 
11
7
libatk = $(top_builddir)/atk/libatk-$(ATK_API_VERSION).la
12
8
 
13
 
INCLUDES = -I$(top_srcdir)      \
 
9
AM_CPPFLAGS = -I$(top_srcdir)   \
14
10
        -DG_DISABLE_DEPRECATED  \
15
11
        $(DEP_CFLAGS)
16
12
DEPS = \
17
13
        $(libatk)
18
14
 
19
 
moduledir = $(libdir)/gtk-2.0/modules
20
 
 
21
 
libteststateset_la_SOURCES = teststateset.c
22
 
libteststateset_la_LDFLAGS = \
23
 
        -rpath $(moduledir) \
24
 
        $(no_undefined) \
25
 
        -avoid-version  \
26
 
        -module
27
 
libteststateset_la_LIBADD = $(libatk) $(DEP_LIBS)
28
 
 
29
 
libtestrelation_la_SOURCES = testrelation.c
30
 
libtestrelation_la_LDFLAGS = \
31
 
        -rpath $(moduledir) \
32
 
        $(no_undefined) \
33
 
        -avoid-version  \
34
 
        -module
35
 
libtestrelation_la_LIBADD = $(libatk) $(DEP_LIBS)
 
15
noinst_PROGRAMS = testrole  \
 
16
                  testrelation  \
 
17
                  teststateset
 
18
 
 
19
LDADD = $(libatk) $(DEP_LIBS)
 
20
 
 
21
testrole_SOURCES = testrole.c
 
22
testrelation_SOURCES = testrelation.c
 
23
teststateset_SOURCES = teststateset.c