~ubuntu-branches/ubuntu/oneiric/gconf/oneiric-proposed

« back to all changes in this revision

Viewing changes to tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Takuo KITAME
  • Date: 2002-03-17 01:51:39 UTC
  • Revision ID: james.westby@ubuntu.com-20020317015139-z4f8fdg1hoe049g0
Tags: upstream-1.0.9
ImportĀ upstreamĀ versionĀ 1.0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
EFENCE=
 
3
 
 
4
INCLUDES = -I$(top_srcdir) -I$(top_builddir) -I$(top_srcdir)/gconf \
 
5
        -I$(top_builddir)/gconf \
 
6
        -I$(includedir) $(ORBIT_CFLAGS) $(GLIB_CFLAGS) \
 
7
         -DG_LOG_DOMAIN=\"GConf-Tests\" -DGCONF_ENABLE_INTERNALS=1
 
8
 
 
9
noinst_PROGRAMS=testgconf testlisteners testschemas testchangeset testencode testunique testpersistence testdirlist testaddress
 
10
 
 
11
TESTLIBS= $(INTLLIBS) $(ORBIT_LIBS) $(GLIB_LIBS) $(top_builddir)/gconf/libgconf-$(MAJOR_VERSION).la  $(EFENCE)
 
12
 
 
13
testunique_SOURCES=testunique.c
 
14
 
 
15
testunique_LDADD = $(TESTLIBS)
 
16
 
 
17
testgconf_SOURCES=testgconf.c
 
18
 
 
19
testgconf_LDADD = $(TESTLIBS)
 
20
 
 
21
testpersistence_SOURCES=testpersistence.c
 
22
 
 
23
testpersistence_LDADD = $(TESTLIBS)
 
24
 
 
25
testlisteners_SOURCES=testlisteners.c
 
26
 
 
27
testlisteners_LDADD = $(TESTLIBS)
 
28
 
 
29
testschemas_SOURCES=testschemas.c
 
30
 
 
31
testschemas_LDADD = $(TESTLIBS)
 
32
 
 
33
testchangeset_SOURCES=testchangeset.c
 
34
 
 
35
testchangeset_LDADD = $(TESTLIBS)
 
36
 
 
37
testencode_SOURCES=testencode.c
 
38
 
 
39
testencode_LDADD = $(TESTLIBS)
 
40
 
 
41
testdirlist_SOURCES=testdirlist.c
 
42
 
 
43
testdirlist_LDADD = $(TESTLIBS)
 
44
 
 
45
 
 
46
testaddress_SOURCES=testaddress.c
 
47
 
 
48
testaddress_LDADD = $(TESTLIBS)
 
49
 
 
50
 
 
51
 
 
52
 
 
53
 
 
54
 
 
55
 
 
56
 
 
57