~ubuntu-branches/ubuntu/oneiric/json-glib/oneiric

« back to all changes in this revision

Viewing changes to json-glib/tests/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-09-12 09:08:07 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: package-import@ubuntu.com-20110912090807-3br793wiakn3yr8r
Tags: 0.13.90-1
* New upstream release.
* Drop 0001-Fix-GVariant-creation-on-some-architectures-bug-6504.patch:
  Applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
AM_CPPFLAGS = $(JSON_DEBUG_CFLAGS) -DTESTS_DATA_DIR=\""$(top_srcdir)/json-glib/tests"\"
14
14
AM_CFLAGS = -g $(JSON_CFLAGS) $(MAINTAINER_CFLAGS)
15
 
LDADD = ../libjson-glib-1.0.la
 
15
LDADD = \
 
16
        ../libjson-glib-1.0.la \
 
17
        $(JSON_LIBS) \
 
18
        $(NULL)
16
19
 
17
20
EXTRA_DIST += stream-load.json
18
21
 
19
22
noinst_PROGRAMS = $(TEST_PROGS)
20
23
TEST_PROGS += \
21
 
        array-test              \
22
 
        object-test             \
23
 
        node-test               \
24
 
        parser-test             \
25
 
        generator-test          \
26
 
        builder-test            \
27
 
        reader-test             \
28
 
        gvariant-test           \
29
 
        path-test               \
 
24
        array                   \
30
25
        boxed                   \
 
26
        builder                 \
 
27
        generator               \
 
28
        gvariant                \
 
29
        node                    \
 
30
        object                  \
 
31
        parser                  \
 
32
        path                    \
 
33
        reader                  \
31
34
        serialize-simple        \
32
35
        serialize-complex       \
33
36
        serialize-full          \