1 | NULL= |
---|
2 | |
---|
3 | noinst_PROGRAMS= \ |
---|
4 | bonobo-activation-test \ |
---|
5 | bonobo-activation-test-async \ |
---|
6 | $(NULL) |
---|
7 | |
---|
8 | noinst_LTLIBRARIES= \ |
---|
9 | libtest-plugin.la \ |
---|
10 | $(NULL) |
---|
11 | |
---|
12 | bin_PROGRAMS= \ |
---|
13 | bonobo-activation-empty-server \ |
---|
14 | bonobo-activation-run-query \ |
---|
15 | $(NULL) |
---|
16 | |
---|
17 | bonobo_activation_test_async_SOURCES= \ |
---|
18 | bonobo-activation-test-async.c \ |
---|
19 | $(NULL) |
---|
20 | |
---|
21 | bonobo_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. |
---|
33 | libtest_plugin_la_LDFLAGS= \ |
---|
34 | -rpath $(shell (cd $(top_builddir);pwd))/test/.libs \ |
---|
35 | -module -avoid-version \ |
---|
36 | $(NULL) |
---|
37 | |
---|
38 | libtest_plugin_la_SOURCES= \ |
---|
39 | plugin.h \ |
---|
40 | plugin-common.c \ |
---|
41 | plugin-skels.c \ |
---|
42 | bonobo-activation-testplugin.c \ |
---|
43 | $(NULL) |
---|
44 | |
---|
45 | bonobo_activation_run_query_SOURCES= \ |
---|
46 | bonobo-activation-run-query.c \ |
---|
47 | empty-common.c \ |
---|
48 | empty.h \ |
---|
49 | empty-stubs.c \ |
---|
50 | $(NULL) |
---|
51 | |
---|
52 | bonobo_activation_empty_server_SOURCES= \ |
---|
53 | empty-server.c \ |
---|
54 | empty.h \ |
---|
55 | empty-common.c \ |
---|
56 | empty-skels.c \ |
---|
57 | $(NULL) |
---|
58 | |
---|
59 | BUILT_SOURCES= \ |
---|
60 | empty.h \ |
---|
61 | empty-common.c \ |
---|
62 | empty-stubs.c \ |
---|
63 | empty-skels.c \ |
---|
64 | $(NULL) |
---|
65 | |
---|
66 | empty.h empty-common.c empty-stubs.c empty-skels.c: empty_built |
---|
67 | plugin.h plugin-common.c plugin-stubs.c plugin-skels.c: plugin_built |
---|
68 | |
---|
69 | empty_built: empty.idl $(ORBIT_IDL) |
---|
70 | $(ORBIT_IDL) $(srcdir)/empty.idl |
---|
71 | touch empty_built |
---|
72 | |
---|
73 | plugin_built: plugin.idl $(ORBIT_IDL) |
---|
74 | $(ORBIT_IDL) $(srcdir)/plugin.idl |
---|
75 | touch plugin_built |
---|
76 | |
---|
77 | CLEANFILES=empty_built plugin_built |
---|
78 | |
---|
79 | INCLUDES= \ |
---|
80 | -I$(top_srcdir) \ |
---|
81 | -I$(top_builddir) \ |
---|
82 | -DG_DISABLE_DEPRECATED $(UTILS_CFLAGS) |
---|
83 | |
---|
84 | LDADD=../bonobo-activation/libbonobo-activation.la $(UTILS_LIBS) |
---|
85 | |
---|
86 | serverfiles=empty.server broken.server plugin.server |
---|
87 | |
---|
88 | emptydatadir=$(libdir)/bonobo/servers |
---|
89 | emptydata_DATA=$(serverfiles) |
---|
90 | |
---|
91 | EXTRA_DIST=empty.idl plugin.idl $(serverfiles) |
---|
92 | |
---|
93 | TESTS_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 | |
---|
98 | TESTS = bonobo-activation-test bonobo-activation-test-async |
---|