source: trunk/third/bonobo-activation/test/Makefile.am @ 18311

Revision 18311, 2.1 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18310, which included commits to RCS files with non-trunk default branches.
Line 
1NULL=
2
3noinst_PROGRAMS=                        \
4        bonobo-activation-test          \
5        bonobo-activation-test-async    \
6        $(NULL)
7
8noinst_LTLIBRARIES=                     \
9        libtest-plugin.la               \
10        $(NULL)
11
12bin_PROGRAMS=                           \
13        bonobo-activation-empty-server  \
14        bonobo-activation-run-query     \
15        $(NULL)
16
17bonobo_activation_test_async_SOURCES=   \
18        bonobo-activation-test-async.c  \
19        $(NULL)
20
21bonobo_activation_test_SOURCES=         \
22        bonobo-activation-test.c        \
23        empty-common.c                  \
24        empty.h                         \
25        empty-stubs.c                   \
26        plugin-common.c                 \
27        plugin.h                        \
28        plugin-stubs.c                  \
29        $(NULL)
30
31# Horrible, digusting and atrocious hack to
32# get libtool to build a noinst shared lib.
33libtest_plugin_la_LDFLAGS=                                      \
34        -rpath $(shell (cd $(top_builddir);pwd))/test/.libs     \
35        -module -avoid-version                                  \
36        $(NULL)
37
38libtest_plugin_la_SOURCES=              \
39        plugin.h                        \
40        plugin-common.c                 \
41        plugin-skels.c                  \
42        bonobo-activation-testplugin.c  \
43        $(NULL)
44
45bonobo_activation_run_query_SOURCES=    \
46        bonobo-activation-run-query.c   \
47        empty-common.c                  \
48        empty.h                         \
49        empty-stubs.c                   \
50        $(NULL)
51
52bonobo_activation_empty_server_SOURCES= \
53        empty-server.c                  \
54        empty.h                         \
55        empty-common.c                  \
56        empty-skels.c                   \
57        $(NULL)
58
59BUILT_SOURCES=                          \
60        empty.h                         \
61        empty-common.c                  \
62        empty-stubs.c                   \
63        empty-skels.c                   \
64        $(NULL)
65
66empty.h empty-common.c empty-stubs.c empty-skels.c: empty_built
67plugin.h plugin-common.c plugin-stubs.c plugin-skels.c: plugin_built
68
69empty_built: empty.idl $(ORBIT_IDL)
70        $(ORBIT_IDL) $(srcdir)/empty.idl
71        touch empty_built
72
73plugin_built: plugin.idl $(ORBIT_IDL)
74        $(ORBIT_IDL) $(srcdir)/plugin.idl
75        touch plugin_built
76
77CLEANFILES=empty_built plugin_built
78
79INCLUDES= \
80        -I$(top_srcdir)                 \
81        -I$(top_builddir)               \
82        -DG_DISABLE_DEPRECATED $(UTILS_CFLAGS)
83
84LDADD=../bonobo-activation/libbonobo-activation.la $(UTILS_LIBS)
85
86serverfiles=empty.server broken.server plugin.server
87
88emptydatadir=$(libdir)/bonobo/servers
89emptydata_DATA=$(serverfiles)
90
91EXTRA_DIST=empty.idl plugin.idl $(serverfiles)
92
93TESTS_ENVIRONMENT = \
94        BONOBO_ACTIVATION_PATH="$(top_srcdir)/test:$$BONOBO_ACTIVATION_PATH" \
95        PATH="$(top_builddir)/test:$$PATH" \
96        LD_LIBRARY_PATH="$(top_builddir)/test/.libs:$$LD_LIBRARY_PATH"
97
98TESTS = bonobo-activation-test bonobo-activation-test-async
Note: See TracBrowser for help on using the repository browser.