diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-11-18 07:12:38 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-11-18 07:12:38 +0000 |
commit | 4ae8b8cf8617ffcc2f82576ca586cff91f5fdda3 (patch) | |
tree | 2e7323a4f7f7ae08addcfed16795cc96ef5d39bd /src/tests/eo | |
parent | 766a0c790d31795a2eaa51f9e7981b13eeb378a7 (diff) |
merge: do not use recursive make for unit tests
SVN revision: 79413
Diffstat (limited to 'src/tests/eo')
-rw-r--r-- | src/tests/eo/Makefile.am | 128 |
1 files changed, 0 insertions, 128 deletions
diff --git a/src/tests/eo/Makefile.am b/src/tests/eo/Makefile.am deleted file mode 100644 index 115a4c3c65..0000000000 --- a/src/tests/eo/Makefile.am +++ /dev/null | |||
@@ -1,128 +0,0 @@ | |||
1 | MAINTAINERCLEANFILES = Makefile.in | ||
2 | |||
3 | AM_CPPFLAGS = \ | ||
4 | -I$(top_srcdir)/src/lib/eina \ | ||
5 | -I$(top_srcdir)/src/lib/eo \ | ||
6 | -I$(top_builddir)/src/lib/eina \ | ||
7 | -I$(top_builddir)/src/lib/eo \ | ||
8 | -DNDEBUG \ | ||
9 | @EO_CFLAGS@ \ | ||
10 | @CHECK_CFLAGS@ | ||
11 | |||
12 | check_PROGRAMS = \ | ||
13 | test_access \ | ||
14 | test_composite_objects \ | ||
15 | test_constructors \ | ||
16 | test_function_overrides \ | ||
17 | test_interface \ | ||
18 | test_mixin \ | ||
19 | test_signals | ||
20 | |||
21 | if EFL_ENABLE_TESTS | ||
22 | check_PROGRAMS += eo_suite | ||
23 | endif | ||
24 | |||
25 | test_access_SOURCES = \ | ||
26 | access/access_inherit.c \ | ||
27 | access/access_inherit.h \ | ||
28 | access/access_main.c \ | ||
29 | access/access_simple.c \ | ||
30 | access/access_simple.h \ | ||
31 | access/access_simple_protected.h | ||
32 | |||
33 | test_access_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LIBS@ | ||
34 | |||
35 | test_composite_objects_SOURCES = \ | ||
36 | composite_objects/composite_objects_comp.c \ | ||
37 | composite_objects/composite_objects_comp.h \ | ||
38 | composite_objects/composite_objects_main.c \ | ||
39 | composite_objects/composite_objects_simple.c \ | ||
40 | composite_objects/composite_objects_simple.h | ||
41 | |||
42 | test_composite_objects_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LIBS@ | ||
43 | |||
44 | test_constructors_SOURCES = \ | ||
45 | constructors/constructors_main.c \ | ||
46 | constructors/constructors_mixin.c \ | ||
47 | constructors/constructors_mixin.h \ | ||
48 | constructors/constructors_simple.c \ | ||
49 | constructors/constructors_simple.h \ | ||
50 | constructors/constructors_simple2.c \ | ||
51 | constructors/constructors_simple2.h \ | ||
52 | constructors/constructors_simple3.c \ | ||
53 | constructors/constructors_simple3.h \ | ||
54 | constructors/constructors_simple4.c \ | ||
55 | constructors/constructors_simple4.h \ | ||
56 | constructors/constructors_simple5.c \ | ||
57 | constructors/constructors_simple5.h \ | ||
58 | constructors/constructors_simple6.c \ | ||
59 | constructors/constructors_simple6.h \ | ||
60 | constructors/constructors_simple7.c \ | ||
61 | constructors/constructors_simple7.h | ||
62 | |||
63 | test_constructors_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LIBS@ | ||
64 | |||
65 | if EFL_ENABLE_TESTS | ||
66 | |||
67 | eo_suite_SOURCES = \ | ||
68 | suite/eo_test_class_simple.c \ | ||
69 | suite/eo_test_class_simple.h \ | ||
70 | suite/eo_suite.c \ | ||
71 | suite/eo_suite.h \ | ||
72 | suite/eo_test_class_errors.c \ | ||
73 | suite/eo_test_general.c \ | ||
74 | suite/eo_test_init.c | ||
75 | |||
76 | eo_suite_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LIBS@ @CHECK_LIBS@ | ||
77 | |||
78 | endif | ||
79 | |||
80 | test_function_overrides_SOURCES = \ | ||
81 | function_overrides/function_overrides_inherit.c \ | ||
82 | function_overrides/function_overrides_inherit.h \ | ||
83 | function_overrides/function_overrides_inherit2.c \ | ||
84 | function_overrides/function_overrides_inherit2.h \ | ||
85 | function_overrides/function_overrides_inherit3.c \ | ||
86 | function_overrides/function_overrides_inherit3.h \ | ||
87 | function_overrides/function_overrides_main.c \ | ||
88 | function_overrides/function_overrides_simple.c \ | ||
89 | function_overrides/function_overrides_simple.h | ||
90 | |||
91 | test_function_overrides_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LIBS@ | ||
92 | |||
93 | test_interface_SOURCES = \ | ||
94 | interface/interface_interface.c \ | ||
95 | interface/interface_interface.h \ | ||
96 | interface/interface_interface2.c \ | ||
97 | interface/interface_interface2.h \ | ||
98 | interface/interface_main.c \ | ||
99 | interface/interface_simple.c \ | ||
100 | interface/interface_simple.h | ||
101 | |||
102 | test_interface_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LIBS@ | ||
103 | |||
104 | test_mixin_SOURCES = \ | ||
105 | mixin/mixin_inherit.c \ | ||
106 | mixin/mixin_inherit.h \ | ||
107 | mixin/mixin_main.c \ | ||
108 | mixin/mixin_mixin.c \ | ||
109 | mixin/mixin_mixin.h \ | ||
110 | mixin/mixin_mixin2.c \ | ||
111 | mixin/mixin_mixin2.h \ | ||
112 | mixin/mixin_mixin3.c \ | ||
113 | mixin/mixin_mixin3.h \ | ||
114 | mixin/mixin_mixin4.c \ | ||
115 | mixin/mixin_mixin4.h \ | ||
116 | mixin/mixin_simple.c \ | ||
117 | mixin/mixin_simple.h | ||
118 | |||
119 | test_mixin_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LIBS@ | ||
120 | |||
121 | test_signals_SOURCES = \ | ||
122 | signals/signals_main.c \ | ||
123 | signals/signals_simple.c \ | ||
124 | signals/signals_simple.h | ||
125 | |||
126 | test_signals_LDADD = $(top_builddir)/src/lib/eo/libeo.la @EO_LIBS@ | ||
127 | |||
128 | EXTRA_DIST = eunit_tests.h | ||