diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2018-08-08 09:45:30 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2018-08-08 09:45:30 -0400 |
commit | ad81ef1364e4035bda527c61c47c2cad193b8e78 (patch) | |
tree | 90129c1deeb2f0b832281738f4ba75a4018f51e7 | |
parent | d3f8ca29025af91655d61302eaa589ba6563a315 (diff) |
build: define PACKAGE_BUILD_DIR as $(abs_top_builddir) for all test suites
Summary:
this needs to be consistent so that it can be used reliably across suites
also these build flags really need to be consolidated into a single variable
that can be reused
Depends on D6666
Reviewers: devilhorns, bu5hm4n
Reviewed By: bu5hm4n
Subscribers: bu5hm4n, cedric, #committers
Tags: #efl_build
Differential Revision: https://phab.enlightenment.org/D6731
-rw-r--r-- | src/Makefile_Cxx.am | 8 | ||||
-rw-r--r-- | src/Makefile_Ecore.am | 2 | ||||
-rw-r--r-- | src/Makefile_Ecore_Con.am | 1 | ||||
-rw-r--r-- | src/Makefile_Eet.am | 1 | ||||
-rw-r--r-- | src/Makefile_Eeze.am | 1 | ||||
-rw-r--r-- | src/Makefile_Efl.am | 1 | ||||
-rw-r--r-- | src/Makefile_Efl_Js.am | 2 | ||||
-rw-r--r-- | src/Makefile_Efreet.am | 1 | ||||
-rw-r--r-- | src/Makefile_Eio.am | 1 | ||||
-rw-r--r-- | src/Makefile_Eldbus.am | 1 | ||||
-rw-r--r-- | src/Makefile_Elementary.am | 2 | ||||
-rw-r--r-- | src/Makefile_Elocation.am | 1 | ||||
-rw-r--r-- | src/Makefile_Elput.am | 1 | ||||
-rw-r--r-- | src/Makefile_Emile.am | 1 | ||||
-rw-r--r-- | src/Makefile_Eo.am | 1 | ||||
-rw-r--r-- | src/Makefile_Eolian.am | 1 | ||||
-rw-r--r-- | src/Makefile_Eolian_Cxx.am | 2 | ||||
-rw-r--r-- | src/Makefile_Eolian_Js.am | 2 | ||||
-rw-r--r-- | src/Makefile_Evas.am | 1 |
19 files changed, 25 insertions, 6 deletions
diff --git a/src/Makefile_Cxx.am b/src/Makefile_Cxx.am index 25b0429..7d38d64 100644 --- a/src/Makefile_Cxx.am +++ b/src/Makefile_Cxx.am | |||
@@ -234,7 +234,7 @@ tests/eina_cxx/simple.eo.impl.hh | |||
234 | tests_eina_cxx_eina_cxx_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 234 | tests_eina_cxx_eina_cxx_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
235 | -DTESTS_WD=\"`pwd`\" \ | 235 | -DTESTS_WD=\"`pwd`\" \ |
236 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eina_cxx\" \ | 236 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eina_cxx\" \ |
237 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)/src/tests/eina_cxx\" \ | 237 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ |
238 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eina_cxx\" \ | 238 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eina_cxx\" \ |
239 | -I$(top_builddir)/src/lib/efl \ | 239 | -I$(top_builddir)/src/lib/efl \ |
240 | -I$(top_builddir)/src/lib/efl/interfaces \ | 240 | -I$(top_builddir)/src/lib/efl/interfaces \ |
@@ -256,7 +256,7 @@ tests/eo_cxx/eo_cxx_suite.h | |||
256 | tests_eo_cxx_eo_cxx_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 256 | tests_eo_cxx_eo_cxx_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
257 | -DTESTS_WD=\"`pwd`\" \ | 257 | -DTESTS_WD=\"`pwd`\" \ |
258 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eo_cxx\" \ | 258 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eo_cxx\" \ |
259 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)/src/tests/eo_cxx\" \ | 259 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ |
260 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eo_cxx\" \ | 260 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eo_cxx\" \ |
261 | -I$(top_builddir)/src/lib/efl \ | 261 | -I$(top_builddir)/src/lib/efl \ |
262 | -I$(top_builddir)/src/lib/efl/interfaces \ | 262 | -I$(top_builddir)/src/lib/efl/interfaces \ |
@@ -285,6 +285,7 @@ tests_ecore_cxx_ecore_cxx_suite_CPPFLAGS = \ | |||
285 | -I$(top_builddir)/src/lib/efl \ | 285 | -I$(top_builddir)/src/lib/efl \ |
286 | -I$(top_builddir)/src/lib/efl/interfaces \ | 286 | -I$(top_builddir)/src/lib/efl/interfaces \ |
287 | -I$(top_builddir)/src/lib/ecore \ | 287 | -I$(top_builddir)/src/lib/ecore \ |
288 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
288 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore_cxx\" \ | 289 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore_cxx\" \ |
289 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore_cxx\" \ | 290 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore_cxx\" \ |
290 | @CHECK_CFLAGS@ @ECORE_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EVAS_CXX_CFLAGS@ @EINA_CFLAGS@ \ | 291 | @CHECK_CFLAGS@ @ECORE_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EVAS_CXX_CFLAGS@ @EINA_CFLAGS@ \ |
@@ -319,7 +320,7 @@ tests_eet_cxx_eet_cxx_suite_CPPFLAGS = \ | |||
319 | -I$(top_builddir)/src/lib/efl \ | 320 | -I$(top_builddir)/src/lib/efl \ |
320 | -DTESTS_WD=\"`pwd`\" \ | 321 | -DTESTS_WD=\"`pwd`\" \ |
321 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eet_cxx\" \ | 322 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eet_cxx\" \ |
322 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)/src/tests/eet_cxx\" \ | 323 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ |
323 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eet_cxx\" \ | 324 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eet_cxx\" \ |
324 | @EO_CFLAGS@ @CHECK_CFLAGS@ @EET_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EET_CFLAGS@ @EINA_CFLAGS@ | 325 | @EO_CFLAGS@ @CHECK_CFLAGS@ @EET_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EET_CFLAGS@ @EINA_CFLAGS@ |
325 | tests_eet_cxx_eet_cxx_suite_LDADD = @CHECK_LIBS@ @USE_EET_LIBS@ | 326 | tests_eet_cxx_eet_cxx_suite_LDADD = @CHECK_LIBS@ @USE_EET_LIBS@ |
@@ -345,6 +346,7 @@ tests_eldbus_cxx_eldbus_cxx_suite_CPPFLAGS = \ | |||
345 | -I$(top_builddir)/src/lib/efl \ | 346 | -I$(top_builddir)/src/lib/efl \ |
346 | -I$(top_builddir)/src/lib/efl/interfaces \ | 347 | -I$(top_builddir)/src/lib/efl/interfaces \ |
347 | -I$(top_builddir)/src/lib/ecore \ | 348 | -I$(top_builddir)/src/lib/ecore \ |
349 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
348 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eldbus\" \ | 350 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eldbus\" \ |
349 | @CHECK_CFLAGS@ @ECORE_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EINA_CFLAGS@ \ | 351 | @CHECK_CFLAGS@ @ECORE_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EINA_CFLAGS@ \ |
350 | @ECORE_CFLAGS@ @EO_CFLAGS@ @EO_CXX_CFLAGS@ @ELDBUS_CFLAGS@ | 352 | @ECORE_CFLAGS@ @EO_CFLAGS@ @EO_CXX_CFLAGS@ @ELDBUS_CFLAGS@ |
diff --git a/src/Makefile_Ecore.am b/src/Makefile_Ecore.am index 47b7467..8c724fa 100644 --- a/src/Makefile_Ecore.am +++ b/src/Makefile_Ecore.am | |||
@@ -289,6 +289,7 @@ tests/ecore/ecore_test_args.c \ | |||
289 | tests/ecore/ecore_suite.h | 289 | tests/ecore/ecore_suite.h |
290 | 290 | ||
291 | tests_ecore_ecore_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 291 | tests_ecore_ecore_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
292 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
292 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore\" \ | 293 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore\" \ |
293 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore\" \ | 294 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore\" \ |
294 | @CHECK_CFLAGS@ \ | 295 | @CHECK_CFLAGS@ \ |
@@ -335,6 +336,7 @@ tests/ecore/efl_app_suite.c \ | |||
335 | tests/ecore/efl_app_suite.h | 336 | tests/ecore/efl_app_suite.h |
336 | 337 | ||
337 | tests_ecore_efl_app_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 338 | tests_ecore_efl_app_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
339 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
338 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore\" \ | 340 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore\" \ |
339 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore\" \ | 341 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore\" \ |
340 | @CHECK_CFLAGS@ \ | 342 | @CHECK_CFLAGS@ \ |
diff --git a/src/Makefile_Ecore_Con.am b/src/Makefile_Ecore_Con.am index ca1e80f..610328a 100644 --- a/src/Makefile_Ecore_Con.am +++ b/src/Makefile_Ecore_Con.am | |||
@@ -219,6 +219,7 @@ tests/ecore_con/ecore_con_test_efl_net_ip_address.c \ | |||
219 | tests/ecore_con/ecore_con_suite.h | 219 | tests/ecore_con/ecore_con_suite.h |
220 | 220 | ||
221 | tests_ecore_con_ecore_con_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 221 | tests_ecore_con_ecore_con_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
222 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
222 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore_con\" \ | 223 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore_con\" \ |
223 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore_con\" \ | 224 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore_con\" \ |
224 | @CHECK_CFLAGS@ \ | 225 | @CHECK_CFLAGS@ \ |
diff --git a/src/Makefile_Eet.am b/src/Makefile_Eet.am index f4e863b..6724cdb 100644 --- a/src/Makefile_Eet.am +++ b/src/Makefile_Eet.am | |||
@@ -76,6 +76,7 @@ tests/eet/eet_test_common.h \ | |||
76 | tests/eet/eet_suite.h | 76 | tests/eet/eet_suite.h |
77 | 77 | ||
78 | tests_eet_eet_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 78 | tests_eet_eet_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
79 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
79 | -DTESTS_WD=\"`pwd`\" \ | 80 | -DTESTS_WD=\"`pwd`\" \ |
80 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eet\" \ | 81 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eet\" \ |
81 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eet\" \ | 82 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eet\" \ |
diff --git a/src/Makefile_Eeze.am b/src/Makefile_Eeze.am index 82b96a1..2e650d8 100644 --- a/src/Makefile_Eeze.am +++ b/src/Makefile_Eeze.am | |||
@@ -180,6 +180,7 @@ tests/eeze/eeze_test_sensor.c \ | |||
180 | tests/eeze/eeze_test_udev.c \ | 180 | tests/eeze/eeze_test_udev.c \ |
181 | tests/eeze/eeze_suite.h | 181 | tests/eeze/eeze_suite.h |
182 | tests_eeze_eeze_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 182 | tests_eeze_eeze_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
183 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
183 | @EEZE_CFLAGS@ \ | 184 | @EEZE_CFLAGS@ \ |
184 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eeze\" \ | 185 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eeze\" \ |
185 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eeze\" \ | 186 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eeze\" \ |
diff --git a/src/Makefile_Efl.am b/src/Makefile_Efl.am index 2dff540..551e907 100644 --- a/src/Makefile_Efl.am +++ b/src/Makefile_Efl.am | |||
@@ -201,6 +201,7 @@ tests/efl/efl_test_model_composite.c \ | |||
201 | tests/efl/efl_suite.h | 201 | tests/efl/efl_suite.h |
202 | 202 | ||
203 | tests_efl_efl_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 203 | tests_efl_efl_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
204 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
204 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/efl\" \ | 205 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/efl\" \ |
205 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/efl\" \ | 206 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/efl\" \ |
206 | @CHECK_CFLAGS@ \ | 207 | @CHECK_CFLAGS@ \ |
diff --git a/src/Makefile_Efl_Js.am b/src/Makefile_Efl_Js.am index 6f2aa70..f4f7ae7 100644 --- a/src/Makefile_Efl_Js.am +++ b/src/Makefile_Efl_Js.am | |||
@@ -200,7 +200,7 @@ SUITE_RUNNER_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | |||
200 | -I$(top_srcdir)/src/bindings/js/eo_js \ | 200 | -I$(top_srcdir)/src/bindings/js/eo_js \ |
201 | -DTESTS_WD=\"`pwd`\" \ | 201 | -DTESTS_WD=\"`pwd`\" \ |
202 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/efl_js\" \ | 202 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/efl_js\" \ |
203 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)/src/tests/efl_js\" \ | 203 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ |
204 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/efl_js\" \ | 204 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/efl_js\" \ |
205 | @CHECK_CFLAGS@ \ | 205 | @CHECK_CFLAGS@ \ |
206 | @EFL_JS_CFLAGS@ \ | 206 | @EFL_JS_CFLAGS@ \ |
diff --git a/src/Makefile_Efreet.am b/src/Makefile_Efreet.am index 8912919..e429273 100644 --- a/src/Makefile_Efreet.am +++ b/src/Makefile_Efreet.am | |||
@@ -231,6 +231,7 @@ tests/efreet/efreet_test_efreet.c \ | |||
231 | tests/efreet/efreet_test_efreet_cache.c | 231 | tests/efreet/efreet_test_efreet_cache.c |
232 | 232 | ||
233 | tests_efreet_efreet_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EFREET_COMMON_CPPFLAGS) @CHECK_CFLAGS@ \ | 233 | tests_efreet_efreet_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EFREET_COMMON_CPPFLAGS) @CHECK_CFLAGS@ \ |
234 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
234 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/efreet\" | 235 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/efreet\" |
235 | tests_efreet_efreet_suite_LDADD = @CHECK_LIBS@ @USE_EFREET_LIBS@ | 236 | tests_efreet_efreet_suite_LDADD = @CHECK_LIBS@ @USE_EFREET_LIBS@ |
236 | tests_efreet_efreet_suite_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ | 237 | tests_efreet_efreet_suite_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ |
diff --git a/src/Makefile_Eio.am b/src/Makefile_Eio.am index 3787636..6778ad4 100644 --- a/src/Makefile_Eio.am +++ b/src/Makefile_Eio.am | |||
@@ -89,6 +89,7 @@ tests/eio/eio_test_eet.c \ | |||
89 | tests/eio/eio_suite.h | 89 | tests/eio/eio_suite.h |
90 | 90 | ||
91 | tests_eio_eio_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 91 | tests_eio_eio_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
92 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
92 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eio\" \ | 93 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eio\" \ |
93 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eio\" \ | 94 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eio\" \ |
94 | @CHECK_CFLAGS@ \ | 95 | @CHECK_CFLAGS@ \ |
diff --git a/src/Makefile_Eldbus.am b/src/Makefile_Eldbus.am index 2fd22ad..4e310fc 100644 --- a/src/Makefile_Eldbus.am +++ b/src/Makefile_Eldbus.am | |||
@@ -143,6 +143,7 @@ tests/eldbus/eldbus_fake_server.c \ | |||
143 | tests/eldbus/eldbus_suite.h | 143 | tests/eldbus/eldbus_suite.h |
144 | 144 | ||
145 | tests_eldbus_eldbus_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl @CHECK_CFLAGS@ @ELDBUS_CFLAGS@ \ | 145 | tests_eldbus_eldbus_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl @CHECK_CFLAGS@ @ELDBUS_CFLAGS@ \ |
146 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
146 | @EFL_CFLAGS@ -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eldbus\" | 147 | @EFL_CFLAGS@ -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eldbus\" |
147 | 148 | ||
148 | tests_eldbus_eldbus_suite_LDADD = @CHECK_LIBS@ @USE_ELDBUS_LIBS@ @USE_EFL_LIBS@ | 149 | tests_eldbus_eldbus_suite_LDADD = @CHECK_LIBS@ @USE_ELDBUS_LIBS@ @USE_EFL_LIBS@ |
diff --git a/src/Makefile_Elementary.am b/src/Makefile_Elementary.am index ac464f2..e1ed314 100644 --- a/src/Makefile_Elementary.am +++ b/src/Makefile_Elementary.am | |||
@@ -1564,6 +1564,7 @@ tests_elementary_elm_suite_SOURCES = \ | |||
1564 | tests/elementary/elm_test_focus_sub.c | 1564 | tests/elementary/elm_test_focus_sub.c |
1565 | 1565 | ||
1566 | tests_elementary_elm_suite_CPPFLAGS = \ | 1566 | tests_elementary_elm_suite_CPPFLAGS = \ |
1567 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
1567 | -DTESTS_BUILD_DIR=\"${top_builddir}/src/tests/elementary\" \ | 1568 | -DTESTS_BUILD_DIR=\"${top_builddir}/src/tests/elementary\" \ |
1568 | -DTESTS_SRC_DIR=\"${top_srcdir}/src/tests/elementary\" \ | 1569 | -DTESTS_SRC_DIR=\"${top_srcdir}/src/tests/elementary\" \ |
1569 | -DELM_IMAGE_DATA_DIR=\"${top_srcdir}/data/elementary\" \ | 1570 | -DELM_IMAGE_DATA_DIR=\"${top_srcdir}/data/elementary\" \ |
@@ -1582,6 +1583,7 @@ tests_elementary_efl_ui_suite_SOURCES = \ | |||
1582 | tests/elementary/efl_ui_suite.c | 1583 | tests/elementary/efl_ui_suite.c |
1583 | 1584 | ||
1584 | tests_elementary_efl_ui_suite_CPPFLAGS = \ | 1585 | tests_elementary_efl_ui_suite_CPPFLAGS = \ |
1586 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
1585 | -DTESTS_BUILD_DIR=\"${top_builddir}/src/tests/elementary\" \ | 1587 | -DTESTS_BUILD_DIR=\"${top_builddir}/src/tests/elementary\" \ |
1586 | -DTESTS_SRC_DIR=\"${top_srcdir}/src/tests/elementary\" \ | 1588 | -DTESTS_SRC_DIR=\"${top_srcdir}/src/tests/elementary\" \ |
1587 | -DELM_IMAGE_DATA_DIR=\"${top_srcdir}/data/elementary\" \ | 1589 | -DELM_IMAGE_DATA_DIR=\"${top_srcdir}/data/elementary\" \ |
diff --git a/src/Makefile_Elocation.am b/src/Makefile_Elocation.am index 82ff192..292f473 100644 --- a/src/Makefile_Elocation.am +++ b/src/Makefile_Elocation.am | |||
@@ -33,6 +33,7 @@ if EFL_ENABLE_TESTS | |||
33 | #tests/elocation/elocation_suite.c | 33 | #tests/elocation/elocation_suite.c |
34 | 34 | ||
35 | #tests_elocation_elocation_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 35 | #tests_elocation_elocation_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
36 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
36 | #-DTESTS_WD=\"`pwd`\" \ | 37 | #-DTESTS_WD=\"`pwd`\" \ |
37 | #-DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/elocation\" \ | 38 | #-DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/elocation\" \ |
38 | #-DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/elocation\" \ | 39 | #-DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/elocation\" \ |
diff --git a/src/Makefile_Elput.am b/src/Makefile_Elput.am index 5997ae6..d2b9793 100644 --- a/src/Makefile_Elput.am +++ b/src/Makefile_Elput.am | |||
@@ -44,6 +44,7 @@ tests/elput/elput_suite.h | |||
44 | 44 | ||
45 | tests_elput_elput_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 45 | tests_elput_elput_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
46 | -I$(top_srcdir)/src/lib/efl \ | 46 | -I$(top_srcdir)/src/lib/efl \ |
47 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
47 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/elput\" \ | 48 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/elput\" \ |
48 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/elput\" \ | 49 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/elput\" \ |
49 | @CHECK_CFLAGS@ \ | 50 | @CHECK_CFLAGS@ \ |
diff --git a/src/Makefile_Emile.am b/src/Makefile_Emile.am index 5f12b3d..90834cf 100644 --- a/src/Makefile_Emile.am +++ b/src/Makefile_Emile.am | |||
@@ -88,6 +88,7 @@ tests/emile/emile_suite.h | |||
88 | 88 | ||
89 | tests_emile_emile_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 89 | tests_emile_emile_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
90 | -DTESTS_WD=\"`pwd`\" \ | 90 | -DTESTS_WD=\"`pwd`\" \ |
91 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
91 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/emile\" \ | 92 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/emile\" \ |
92 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/emile\" \ | 93 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/emile\" \ |
93 | @CHECK_CFLAGS@ \ | 94 | @CHECK_CFLAGS@ \ |
diff --git a/src/Makefile_Eo.am b/src/Makefile_Eo.am index 7d318d2..43778be 100644 --- a/src/Makefile_Eo.am +++ b/src/Makefile_Eo.am | |||
@@ -152,6 +152,7 @@ tests/eo/suite/eo_test_init.c \ | |||
152 | tests/eo/suite/eo_test_lifecycle.c | 152 | tests/eo/suite/eo_test_lifecycle.c |
153 | 153 | ||
154 | tests_eo_eo_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 154 | tests_eo_eo_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
155 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
155 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eo\" \ | 156 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eo\" \ |
156 | @CHECK_CFLAGS@ \ | 157 | @CHECK_CFLAGS@ \ |
157 | @EO_CFLAGS@ \ | 158 | @EO_CFLAGS@ \ |
diff --git a/src/Makefile_Eolian.am b/src/Makefile_Eolian.am index d87f85b..721c205 100644 --- a/src/Makefile_Eolian.am +++ b/src/Makefile_Eolian.am | |||
@@ -131,6 +131,7 @@ tests/eolian/$(TESTS_EOLIAN_OBJNAME)eolian_suite-eolian_generated_future.$(OBJEX | |||
131 | CLEANFILES += tests/eolian/generated_future.eo.h tests/eolian/generated_future.eo.c | 131 | CLEANFILES += tests/eolian/generated_future.eo.h tests/eolian/generated_future.eo.c |
132 | 132 | ||
133 | tests_eolian_eolian_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl -I$(top_builddir)/src/tests/eolian \ | 133 | tests_eolian_eolian_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl -I$(top_builddir)/src/tests/eolian \ |
134 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
134 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eolian\" \ | 135 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eolian\" \ |
135 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eolian\" \ | 136 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eolian\" \ |
136 | -DEO_SRC_DIR=\"$(top_srcdir)/src/lib\" \ | 137 | -DEO_SRC_DIR=\"$(top_srcdir)/src/lib\" \ |
diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am index 4e2abce..5b0099a 100644 --- a/src/Makefile_Eolian_Cxx.am +++ b/src/Makefile_Eolian_Cxx.am | |||
@@ -176,7 +176,7 @@ tests_eolian_cxx_eolian_cxx_suite_CXXFLAGS = \ | |||
176 | -I$(top_builddir)/src/tests/eolian_cxx \ | 176 | -I$(top_builddir)/src/tests/eolian_cxx \ |
177 | -DTESTS_WD=\"`pwd`\" \ | 177 | -DTESTS_WD=\"`pwd`\" \ |
178 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eolian_cxx\" \ | 178 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eolian_cxx\" \ |
179 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)/src/tests/eolian_cxx\" \ | 179 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ |
180 | -DPACKAGE_DATA_DIR=\"$(top_srcdir)/src/tests/eolian_cxx\" \ | 180 | -DPACKAGE_DATA_DIR=\"$(top_srcdir)/src/tests/eolian_cxx\" \ |
181 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eolian_cxx\" \ | 181 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eolian_cxx\" \ |
182 | @CHECK_CFLAGS@ @EOLIAN_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ \ | 182 | @CHECK_CFLAGS@ @EOLIAN_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ \ |
diff --git a/src/Makefile_Eolian_Js.am b/src/Makefile_Eolian_Js.am index 2c31d56..7e4e760 100644 --- a/src/Makefile_Eolian_Js.am +++ b/src/Makefile_Eolian_Js.am | |||
@@ -119,7 +119,7 @@ tests_eolian_js_eolian_js_suite_CPPFLAGS = \ | |||
119 | -I$(top_srcdir)/src/tests/efl_js \ | 119 | -I$(top_srcdir)/src/tests/efl_js \ |
120 | -DTESTS_WD=\"`pwd`\" \ | 120 | -DTESTS_WD=\"`pwd`\" \ |
121 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eolian_js\" \ | 121 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eolian_js\" \ |
122 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)/src/tests/eolian_js\" \ | 122 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ |
123 | -DPACKAGE_DATA_DIR=\"$(datadir)/eolian_js\" \ | 123 | -DPACKAGE_DATA_DIR=\"$(datadir)/eolian_js\" \ |
124 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eolian_js\" \ | 124 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/eolian_js\" \ |
125 | @CHECK_CFLAGS@ @EOLIAN_CXX_CFLAGS@ @EINA_JS_CFLAGS@ @EO_JS_CFLAGS@ @EFL_JS_CFLAGS@ \ | 125 | @CHECK_CFLAGS@ @EOLIAN_CXX_CFLAGS@ @EINA_JS_CFLAGS@ @EO_JS_CFLAGS@ @EFL_JS_CFLAGS@ \ |
diff --git a/src/Makefile_Evas.am b/src/Makefile_Evas.am index f882c1e..2171c24 100644 --- a/src/Makefile_Evas.am +++ b/src/Makefile_Evas.am | |||
@@ -2453,6 +2453,7 @@ tests/evas/evas_suite.h | |||
2453 | tests_evas_evas_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 2453 | tests_evas_evas_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
2454 | -I$(top_srcdir)/src/lib/ecore_evas \ | 2454 | -I$(top_srcdir)/src/lib/ecore_evas \ |
2455 | -I$(top_builddir)/src/lib/evas/canvas \ | 2455 | -I$(top_builddir)/src/lib/evas/canvas \ |
2456 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
2456 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/evas\" \ | 2457 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/evas\" \ |
2457 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/evas\" \ | 2458 | -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/evas\" \ |
2458 | @CHECK_CFLAGS@ \ | 2459 | @CHECK_CFLAGS@ \ |