~ubuntu-branches/ubuntu/quantal/zeitgeist/quantal

« back to all changes in this revision

Viewing changes to test/direct/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2011-11-15 11:15:56 UTC
  • mto: (6.2.2 experimental) (1.3.1)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: package-import@ubuntu.com-20111115111556-so7cmhfbqongw7hf
Tags: upstream-0.8.99~alpha1
ImportĀ upstreamĀ versionĀ 0.8.99~alpha1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
VALAFLAGS = \
 
2
        --pkg gio-2.0 \
 
3
        --target-glib=2.26 \
 
4
        --pkg sqlite3 \
 
5
        --pkg posix \
 
6
        --pkg gmodule-2.0 \
 
7
        $(srcdir)/assertions.vapi \
 
8
        --Xcc=-w \
 
9
        $(NULL)
 
10
 
 
11
TESTS = \
 
12
        marshalling \
 
13
        query-operators-test \
 
14
        where-clause-test \
 
15
        table-lookup-test \
 
16
        $(NULL)
 
17
 
 
18
SRC_FILES = \
 
19
        $(top_srcdir)/src/engine.vala \
 
20
        $(top_srcdir)/src/utils.vala \
 
21
        $(top_srcdir)/src/errors.vala \
 
22
        $(top_srcdir)/src/extension-store.vala \
 
23
        $(top_srcdir)/src/notify.vala \
 
24
        $(top_srcdir)/src/table-lookup.vala \
 
25
        $(top_srcdir)/src/datamodel.vala  \
 
26
        $(top_srcdir)/src/where-clause.vala \
 
27
        $(top_srcdir)/src/remote.vala \
 
28
        $(top_srcdir)/src/sql-schema.vala \
 
29
        $(top_srcdir)/src/extension.vala \
 
30
        $(top_srcdir)/src/extension-collection.vala \
 
31
        $(top_srcdir)/src/sql.vala \
 
32
        $(top_srcdir)/src/ontology.vala \
 
33
        $(top_srcdir)/src/ontology-uris.vala \
 
34
        $(NULL)
 
35
 
 
36
marshalling: marshalling.vala $(SRC_FILES)
 
37
        $(VALAC) $(VALAFLAGS) -o $@ $^
 
38
 
 
39
query-operators-test: query-operators-test.vala $(SRC_FILES)
 
40
        $(VALAC) $(VALAFLAGS) -o $@ $^
 
41
 
 
42
where-clause-test: where-clause-test.vala $(SRC_FILES)
 
43
        $(VALAC) $(VALAFLAGS) -o $@ $^
 
44
 
 
45
table-lookup-test: table-lookup-test.vala $(SRC_FILES)
 
46
        $(VALAC) $(VALAFLAGS) -o $@ $^
 
47
 
 
48
clean-local:
 
49
        rm -f *.~[0-9]~
 
50
 
 
51
DISTCLEANFILES = \
 
52
        marshalling \
 
53
        query-operators-test \
 
54
        where-clause-test \
 
55
        table-lookup-test \
 
56
        $(NULL)
 
57
 
 
58
EXTRA_DIST = \
 
59
        marshalling.vala \
 
60
        query-operators-test.vala \
 
61
        where-clause-test.vala \
 
62
        table-lookup-test.vala \
 
63
        assertions.vapi \
 
64
        $(NULL)
 
65