diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2013-01-14 22:36:23 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2013-01-14 22:36:23 +0000 |
commit | b1bc5aeb24d6dd0faf97c2d1d6c6781798a7fbe9 (patch) | |
tree | ebffce52ddbab71c6da6c2e07eeca7382abf15f6 | |
parent | 283805237a9f5f194568667fc32586a3238cbde0 (diff) |
efl: simplify automake.
Instead of -I$(top_srcdir)... -I$(top_builddir)... and then do it for
the .la, use the EFL_ macros to generate the contents to be used in
automake files.
There is a nasty bit that libtool will parse Makefile*.am and will not
get _DEPENDENCIES from _LIBADD and _LDADD if these are in
@REPLACEMENT@. To solve this we must explicitly set _DEPENDENCIES. The
contents of this is almost the same as _LIBADD or _LDADD with the
"_INTERNAL_" replacement name.
I hope the code will be result will be shorter and consistent as there
is less places to change when we add/remove dependencies.
Statistics are quite impressive (diffstat):
{{{
37 files changed, 663 insertions(+), 1599 deletions(-)
}}}
SVN revision: 82785
Diffstat (limited to '')
37 files changed, 665 insertions, 1601 deletions
diff --git a/configure.ac b/configure.ac index f5d9631440..fc44ede591 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -132,21 +132,6 @@ AC_SUBST(dbusservicedir) | |||
132 | 132 | ||
133 | #### Default values | 133 | #### Default values |
134 | 134 | ||
135 | platform_pc="" | ||
136 | platform_pc_evil="" | ||
137 | platform_pc_escape="" | ||
138 | platform_pc_exotic="" | ||
139 | |||
140 | platform_libs="" | ||
141 | platform_libs_evil="" | ||
142 | platform_libs_escape="" | ||
143 | platform_libs_exotic="" | ||
144 | |||
145 | platform_cflags="" | ||
146 | platform_cflags_evil="" | ||
147 | platform_cflags_escape="" | ||
148 | platform_cflags_exotic="" | ||
149 | |||
150 | requirements_pc_efl="" | 135 | requirements_pc_efl="" |
151 | requirements_pc_deps_efl="" | 136 | requirements_pc_deps_efl="" |
152 | requirements_libs_efl="" | 137 | requirements_libs_efl="" |
@@ -339,10 +324,6 @@ fi | |||
339 | 324 | ||
340 | AM_CONDITIONAL([EFL_ENABLE_COVERAGE], [test "${want_coverage}" = "yes"]) | 325 | AM_CONDITIONAL([EFL_ENABLE_COVERAGE], [test "${want_coverage}" = "yes"]) |
341 | 326 | ||
342 | AC_SUBST([EFL_COV_CFLAGS]) | ||
343 | AC_SUBST([EFL_COV_LIBS]) | ||
344 | |||
345 | |||
346 | #### Checks for libraries | 327 | #### Checks for libraries |
347 | 328 | ||
348 | # check unit testing library | 329 | # check unit testing library |
@@ -561,12 +542,9 @@ AC_DEFINE_IF([HAVE_ATFILE_SOURCE], | |||
561 | 542 | ||
562 | #### Platform-dependent | 543 | #### Platform-dependent |
563 | DL_LIBS="" | 544 | DL_LIBS="" |
545 | DL_INTERNAL_LIBS="" | ||
564 | 546 | ||
565 | #### Evil | 547 | #### Evil |
566 | |||
567 | USE_EVIL_CFLAGS="" | ||
568 | USE_EVIL_LIBS="" | ||
569 | |||
570 | EFL_LIB_START_OPTIONAL([Evil], [test "${have_windows}" = "yes"]) | 548 | EFL_LIB_START_OPTIONAL([Evil], [test "${have_windows}" = "yes"]) |
571 | 549 | ||
572 | ### Default values | 550 | ### Default values |
@@ -578,16 +556,14 @@ EFL_SELECT_WINDOWS_VERSION | |||
578 | 556 | ||
579 | ### Checks for libraries | 557 | ### Checks for libraries |
580 | 558 | ||
581 | EVIL_LIBS="" | ||
582 | EVIL_DLFCN_LIBS="" | 559 | EVIL_DLFCN_LIBS="" |
583 | if test "${have_wince}" = "xyes"; then | 560 | if test "${have_wince}" = "xyes"; then |
584 | EVIL_LIBS="-lws2" | 561 | EFL_ADD_LIBS([EVIL], [-lws2]) |
585 | EVIL_DLFCN_LIBS="-ltoolhelp" | 562 | EVIL_DLFCN_LIBS="-ltoolhelp" |
586 | else | 563 | else |
587 | EVIL_LIBS="-lole32 -lws2_32 -lsecur32 -luuid" | 564 | EFL_ADD_LIBS([EVIL], [-lole32 -lws2_32 -lsecur32 -luuid]) |
588 | EVIL_DLFCN_LIBS="-lpsapi" | 565 | EVIL_DLFCN_LIBS="-lpsapi" |
589 | fi | 566 | fi |
590 | EFL_ADD_LIBS([EVIL], [${EVIL_LIBS}]) | ||
591 | 567 | ||
592 | AC_SUBST([EVIL_DLFCN_LIBS]) | 568 | AC_SUBST([EVIL_DLFCN_LIBS]) |
593 | 569 | ||
@@ -599,17 +575,16 @@ AC_SUBST([EVIL_DLFCN_LIBS]) | |||
599 | 575 | ||
600 | ### Checks for compiler characteristics | 576 | ### Checks for compiler characteristics |
601 | 577 | ||
602 | EVIL_CPPFLAGS="-DEFL_EVIL_BUILD" | ||
603 | EVIL_DLFCN_CPPFLAGS="-DEFL_EVIL_DLFCN_BUILD -DPSAPI_VERSION=1" | 578 | EVIL_DLFCN_CPPFLAGS="-DEFL_EVIL_DLFCN_BUILD -DPSAPI_VERSION=1" |
604 | EVIL_CFLAGS="-Wall -Wextra -Wshadow -Wdeclaration-after-statement -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wpointer-arith" | 579 | # TODO: should we have these at EFL (global?) |
605 | EVIL_CXXFLAGS="" | 580 | EVIL_CFLAGS="-Wdeclaration-after-statement -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls ${EVIL_CFLAGS}" |
581 | EVIL_CXXFLAGS="${EVIL_CXXFLAGS}" | ||
606 | 582 | ||
607 | if test "x${have_win32}" = "xyes" ; then | 583 | if test "x${have_win32}" = "xyes" ; then |
608 | EVIL_CXXFLAGS="-fno-rtti -fno-exceptions" | 584 | EVIL_CFLAGS="-DSECURITY_WIN32 ${EVIL_CFLAGS}" |
609 | EVIL_CPPFLAGS="${EVIL_CPPFLAGS} -DSECURITY_WIN32" | 585 | EVIL_CXXFLAGS="-fno-rtti -fno-exceptions -DSECURITY_WIN32 ${EVIL_CXXFLAGS}" |
610 | fi | 586 | fi |
611 | 587 | ||
612 | AC_SUBST([EVIL_CPPFLAGS]) | ||
613 | AC_SUBST([EVIL_DLFCN_CPPFLAGS]) | 588 | AC_SUBST([EVIL_DLFCN_CPPFLAGS]) |
614 | AC_SUBST([EVIL_CXXFLAGS]) | 589 | AC_SUBST([EVIL_CXXFLAGS]) |
615 | 590 | ||
@@ -617,19 +592,8 @@ AC_SUBST([EVIL_CXXFLAGS]) | |||
617 | 592 | ||
618 | ### Checks for library functions | 593 | ### Checks for library functions |
619 | 594 | ||
620 | platform_pc_evil="evil >= ${PACKAGE_VERSION}" | ||
621 | platform_pc="${platform_pc} ${platform_pc_evil}" | ||
622 | |||
623 | if test "x${have_wince}" = "xyes"; then | ||
624 | platform_libs_evil="-lws2" | ||
625 | else | ||
626 | platform_libs_evil="-lws2_32" | ||
627 | fi | ||
628 | platform_libs="${platform_libs} ${platform_libs_evil}" | ||
629 | |||
630 | USE_EVIL_CFLAGS="-I\$(top_srcdir)/src/lib/evil" | ||
631 | USE_EVIL_LIBS="lib/evil/libevil.la" | ||
632 | DL_LIBS="lib/evil/libdl.la" | 595 | DL_LIBS="lib/evil/libdl.la" |
596 | DL_INTERNAL_LIBS="lib/evil/libdl.la" | ||
633 | 597 | ||
634 | EFL_LIB_END_OPTIONAL([Evil]) | 598 | EFL_LIB_END_OPTIONAL([Evil]) |
635 | 599 | ||
@@ -639,10 +603,6 @@ AC_SUBST([USE_EVIL_LIBS]) | |||
639 | 603 | ||
640 | 604 | ||
641 | #### Escape | 605 | #### Escape |
642 | |||
643 | USE_ESCAPE_CFLAGS="" | ||
644 | USE_ESCAPE_LIBS="" | ||
645 | |||
646 | EFL_LIB_START_OPTIONAL([Escape], [test "${have_ps3}" = "yes"]) | 606 | EFL_LIB_START_OPTIONAL([Escape], [test "${have_ps3}" = "yes"]) |
647 | 607 | ||
648 | ### Additional options to configure | 608 | ### Additional options to configure |
@@ -666,19 +626,11 @@ EFL_ADD_LIBS([ESCAPE], [-llv2 -lm -lnet -lsysmodule -liberty]) | |||
666 | 626 | ||
667 | ### Checks for library functions | 627 | ### Checks for library functions |
668 | 628 | ||
669 | platform_pc_escape="escape >= ${PACKAGE_VERSION}" | ||
670 | platform_pc="${platform_pc} ${platform_pc_escape}" | ||
671 | |||
672 | USE_ESCAPE_CFLAGS="-I\$(top_srcdir)/src/lib/escape" | ||
673 | USE_ESCAPE_LIBS="lib/escape/libescape.la" | ||
674 | |||
675 | EFL_LIB_END_OPTIONAL([Escape]) | 629 | EFL_LIB_END_OPTIONAL([Escape]) |
676 | |||
677 | AC_SUBST([USE_ESCAPE_CFLAGS]) | ||
678 | AC_SUBST([USE_ESCAPE_LIBS]) | ||
679 | #### End of Escape | 630 | #### End of Escape |
680 | 631 | ||
681 | AC_SUBST([DL_LIBS]) | 632 | AC_SUBST([DL_LIBS]) |
633 | AC_SUBST([DL_INTERNAL_LIBS]) | ||
682 | #### End of Platform-dependent | 634 | #### End of Platform-dependent |
683 | 635 | ||
684 | 636 | ||
@@ -1813,8 +1765,6 @@ AM_CONDITIONAL([HAVE_GSTREAMER], [test "${want_gstreamer}" = "yes"]) | |||
1813 | 1765 | ||
1814 | EFL_EVAL_PKGS([ECORE]) | 1766 | EFL_EVAL_PKGS([ECORE]) |
1815 | 1767 | ||
1816 | EFL_ADD_LIBS([ECORE], [${platform_libs}]) | ||
1817 | |||
1818 | ### Checks for header files | 1768 | ### Checks for header files |
1819 | 1769 | ||
1820 | AC_HEADER_SYS_WAIT | 1770 | AC_HEADER_SYS_WAIT |
@@ -1995,6 +1945,7 @@ EFL_LIB_START([Ecore_Ipc]) | |||
1995 | ### Checks for libraries | 1945 | ### Checks for libraries |
1996 | EFL_INTERNAL_DEPEND_PKG([ECORE_IPC], [ecore-con]) | 1946 | EFL_INTERNAL_DEPEND_PKG([ECORE_IPC], [ecore-con]) |
1997 | EFL_INTERNAL_DEPEND_PKG([ECORE_IPC], [ecore]) | 1947 | EFL_INTERNAL_DEPEND_PKG([ECORE_IPC], [ecore]) |
1948 | EFL_INTERNAL_DEPEND_PKG([ECORE_IPC], [eo]) | ||
1998 | EFL_INTERNAL_DEPEND_PKG([ECORE_IPC], [eina]) | 1949 | EFL_INTERNAL_DEPEND_PKG([ECORE_IPC], [eina]) |
1999 | 1950 | ||
2000 | EFL_ADD_LIBS([ECORE_IPC], [-lm]) | 1951 | EFL_ADD_LIBS([ECORE_IPC], [-lm]) |
@@ -2031,6 +1982,7 @@ EFL_LIB_START([Ecore_File]) | |||
2031 | EFL_PLATFORM_DEPEND([ECORE_FILE], [escape]) | 1982 | EFL_PLATFORM_DEPEND([ECORE_FILE], [escape]) |
2032 | EFL_INTERNAL_DEPEND_PKG([ECORE_FILE], [ecore-con]) | 1983 | EFL_INTERNAL_DEPEND_PKG([ECORE_FILE], [ecore-con]) |
2033 | EFL_INTERNAL_DEPEND_PKG([ECORE_FILE], [ecore]) | 1984 | EFL_INTERNAL_DEPEND_PKG([ECORE_FILE], [ecore]) |
1985 | EFL_INTERNAL_DEPEND_PKG([ECORE_FILE], [eo]) | ||
2034 | EFL_INTERNAL_DEPEND_PKG([ECORE_FILE], [eina]) | 1986 | EFL_INTERNAL_DEPEND_PKG([ECORE_FILE], [eina]) |
2035 | 1987 | ||
2036 | ### Checks for header files | 1988 | ### Checks for header files |
@@ -2060,6 +2012,7 @@ EFL_LIB_START([Ecore_Input]) | |||
2060 | 2012 | ||
2061 | ### Checks for libraries | 2013 | ### Checks for libraries |
2062 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT], [ecore]) | 2014 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT], [ecore]) |
2015 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT], [eo]) | ||
2063 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT], [eina]) | 2016 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT], [eina]) |
2064 | 2017 | ||
2065 | ### Checks for header files | 2018 | ### Checks for header files |
@@ -2091,6 +2044,7 @@ EFL_LIB_START([Ecore_Input_Evas]) | |||
2091 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [ecore-input]) | 2044 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [ecore-input]) |
2092 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [ecore]) | 2045 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [ecore]) |
2093 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [evas]) | 2046 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [evas]) |
2047 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [eo]) | ||
2094 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [eina]) | 2048 | EFL_INTERNAL_DEPEND_PKG([ECORE_INPUT_EVAS], [eina]) |
2095 | 2049 | ||
2096 | ### Checks for header files | 2050 | ### Checks for header files |
@@ -2125,6 +2079,7 @@ have_ecore_cocoa="no" | |||
2125 | ### Checks for libraries | 2079 | ### Checks for libraries |
2126 | EFL_INTERNAL_DEPEND_PKG([ECORE_COCOA], [ecore-input]) | 2080 | EFL_INTERNAL_DEPEND_PKG([ECORE_COCOA], [ecore-input]) |
2127 | EFL_INTERNAL_DEPEND_PKG([ECORE_COCOA], [ecore]) | 2081 | EFL_INTERNAL_DEPEND_PKG([ECORE_COCOA], [ecore]) |
2082 | EFL_INTERNAL_DEPEND_PKG([ECORE_COCOA], [eo]) | ||
2128 | EFL_INTERNAL_DEPEND_PKG([ECORE_COCOA], [eina]) | 2083 | EFL_INTERNAL_DEPEND_PKG([ECORE_COCOA], [eina]) |
2129 | 2084 | ||
2130 | ### Checks for header files | 2085 | ### Checks for header files |
@@ -2205,6 +2160,8 @@ AC_ARG_ENABLE([tslib], | |||
2205 | 2160 | ||
2206 | ### Checks for libraries | 2161 | ### Checks for libraries |
2207 | EFL_INTERNAL_DEPEND_PKG([ECORE_FB], [ecore]) | 2162 | EFL_INTERNAL_DEPEND_PKG([ECORE_FB], [ecore]) |
2163 | EFL_INTERNAL_DEPEND_PKG([ECORE_FB], [ecore-input]) | ||
2164 | EFL_INTERNAL_DEPEND_PKG([ECORE_FB], [eo]) | ||
2208 | EFL_INTERNAL_DEPEND_PKG([ECORE_FB], [eina]) | 2165 | EFL_INTERNAL_DEPEND_PKG([ECORE_FB], [eina]) |
2209 | 2166 | ||
2210 | EFL_OPTIONAL_DEPEND_PKG([ECORE_FB], [${want_tslib}], [TSLIB], [tslib]) | 2167 | EFL_OPTIONAL_DEPEND_PKG([ECORE_FB], [${want_tslib}], [TSLIB], [tslib]) |
@@ -2244,10 +2201,12 @@ EFL_LIB_START_OPTIONAL([Ecore_Psl1ght], [test "${have_ps3}" = "yes"]) | |||
2244 | ### Checks for programs | 2201 | ### Checks for programs |
2245 | 2202 | ||
2246 | ### Checks for libraries | 2203 | ### Checks for libraries |
2204 | EFL_PLATFORM_DEPEND([ECORE_PSL1GHT], [escape]) | ||
2205 | |||
2247 | EFL_INTERNAL_DEPEND_PKG([ECORE_PSL1GHT], [ecore-input]) | 2206 | EFL_INTERNAL_DEPEND_PKG([ECORE_PSL1GHT], [ecore-input]) |
2248 | EFL_INTERNAL_DEPEND_PKG([ECORE_PSL1GHT], [ecore]) | 2207 | EFL_INTERNAL_DEPEND_PKG([ECORE_PSL1GHT], [ecore]) |
2208 | EFL_INTERNAL_DEPEND_PKG([ECORE_PSL1GHT], [eo]) | ||
2249 | EFL_INTERNAL_DEPEND_PKG([ECORE_PSL1GHT], [eina]) | 2209 | EFL_INTERNAL_DEPEND_PKG([ECORE_PSL1GHT], [eina]) |
2250 | EFL_INTERNAL_DEPEND_PKG([ECORE_PSL1GHT], [escape]) | ||
2251 | 2210 | ||
2252 | EFL_ADD_LIBS([ECORE_PSL1GHT], [-lio -lsysutil -lgem -lcamera -lspurs]) | 2211 | EFL_ADD_LIBS([ECORE_PSL1GHT], [-lio -lsysutil -lgem -lcamera -lspurs]) |
2253 | 2212 | ||
@@ -2280,6 +2239,7 @@ EFL_LIB_START_OPTIONAL([Ecore_SDL], [test "${want_sdl}" = "yes"]) | |||
2280 | EFL_PLATFORM_DEPEND([ECORE_SDL], [all]) | 2239 | EFL_PLATFORM_DEPEND([ECORE_SDL], [all]) |
2281 | EFL_INTERNAL_DEPEND_PKG([ECORE_SDL], [ecore-input]) | 2240 | EFL_INTERNAL_DEPEND_PKG([ECORE_SDL], [ecore-input]) |
2282 | EFL_INTERNAL_DEPEND_PKG([ECORE_SDL], [ecore]) | 2241 | EFL_INTERNAL_DEPEND_PKG([ECORE_SDL], [ecore]) |
2242 | EFL_INTERNAL_DEPEND_PKG([ECORE_SDL], [eo]) | ||
2283 | EFL_INTERNAL_DEPEND_PKG([ECORE_SDL], [eina]) | 2243 | EFL_INTERNAL_DEPEND_PKG([ECORE_SDL], [eina]) |
2284 | 2244 | ||
2285 | EFL_DEPEND_PKG([ECORE_SDL], [SDL], [sdl >= 1.2.0]) | 2245 | EFL_DEPEND_PKG([ECORE_SDL], [SDL], [sdl >= 1.2.0]) |
@@ -2317,6 +2277,7 @@ EFL_LIB_START_OPTIONAL([Ecore_Wayland], [test "${want_wayland}" = "yes"]) | |||
2317 | ### Checks for libraries | 2277 | ### Checks for libraries |
2318 | EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [ecore-input]) | 2278 | EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [ecore-input]) |
2319 | EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [ecore]) | 2279 | EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [ecore]) |
2280 | EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [eo]) | ||
2320 | EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [eina]) | 2281 | EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [eina]) |
2321 | 2282 | ||
2322 | EFL_DEPEND_PKG([ECORE_WAYLAND], [WAYLAND], | 2283 | EFL_DEPEND_PKG([ECORE_WAYLAND], [WAYLAND], |
@@ -2385,6 +2346,7 @@ AC_ARG_ENABLE([pulseaudio], | |||
2385 | ### Checks for libraries | 2346 | ### Checks for libraries |
2386 | EFL_INTERNAL_DEPEND_PKG([ECORE_AUDIO], [ecore]) | 2347 | EFL_INTERNAL_DEPEND_PKG([ECORE_AUDIO], [ecore]) |
2387 | EFL_INTERNAL_DEPEND_PKG([ECORE_AUDIO], [eet]) | 2348 | EFL_INTERNAL_DEPEND_PKG([ECORE_AUDIO], [eet]) |
2349 | EFL_INTERNAL_DEPEND_PKG([ECORE_AUDIO], [eo]) | ||
2388 | EFL_INTERNAL_DEPEND_PKG([ECORE_AUDIO], [eina]) | 2350 | EFL_INTERNAL_DEPEND_PKG([ECORE_AUDIO], [eina]) |
2389 | 2351 | ||
2390 | EFL_ADD_LIBS([ECORE_AUDIO], [-lm]) | 2352 | EFL_ADD_LIBS([ECORE_AUDIO], [-lm]) |
@@ -2423,6 +2385,7 @@ EFL_LIB_START_OPTIONAL([Ecore_Win32], [test "${have_win32}" = "yes"]) | |||
2423 | EFL_PLATFORM_DEPEND([ECORE_WIN32], [evil]) | 2385 | EFL_PLATFORM_DEPEND([ECORE_WIN32], [evil]) |
2424 | EFL_INTERNAL_DEPEND_PKG([ECORE_WIN32], [ecore-input]) | 2386 | EFL_INTERNAL_DEPEND_PKG([ECORE_WIN32], [ecore-input]) |
2425 | EFL_INTERNAL_DEPEND_PKG([ECORE_WIN32], [ecore]) | 2387 | EFL_INTERNAL_DEPEND_PKG([ECORE_WIN32], [ecore]) |
2388 | EFL_INTERNAL_DEPEND_PKG([ECORE_WIN32], [eo]) | ||
2426 | EFL_INTERNAL_DEPEND_PKG([ECORE_WIN32], [eina]) | 2389 | EFL_INTERNAL_DEPEND_PKG([ECORE_WIN32], [eina]) |
2427 | 2390 | ||
2428 | EFL_ADD_LIBS([ECORE_WIN32], [-lole32 -lgdi32]) | 2391 | EFL_ADD_LIBS([ECORE_WIN32], [-lole32 -lgdi32]) |
@@ -2457,6 +2420,7 @@ EFL_LIB_START_OPTIONAL([Ecore_WinCE], [test "${have_wince}" = "yes"]) | |||
2457 | EFL_PLATFORM_DEPEND([ECORE_WINCE], [evil]) | 2420 | EFL_PLATFORM_DEPEND([ECORE_WINCE], [evil]) |
2458 | EFL_INTERNAL_DEPEND_PKG([ECORE_WINCE], [ecore-input]) | 2421 | EFL_INTERNAL_DEPEND_PKG([ECORE_WINCE], [ecore-input]) |
2459 | EFL_INTERNAL_DEPEND_PKG([ECORE_WINCE], [ecore]) | 2422 | EFL_INTERNAL_DEPEND_PKG([ECORE_WINCE], [ecore]) |
2423 | EFL_INTERNAL_DEPEND_PKG([ECORE_WINCE], [eo]) | ||
2460 | EFL_INTERNAL_DEPEND_PKG([ECORE_WINCE], [eina]) | 2424 | EFL_INTERNAL_DEPEND_PKG([ECORE_WINCE], [eina]) |
2461 | 2425 | ||
2462 | ### Checks for header files | 2426 | ### Checks for header files |
@@ -2531,6 +2495,7 @@ AC_ARG_ENABLE([xim], | |||
2531 | ### Checks for libraries | 2495 | ### Checks for libraries |
2532 | EFL_INTERNAL_DEPEND_PKG([ECORE_X], [ecore-input]) | 2496 | EFL_INTERNAL_DEPEND_PKG([ECORE_X], [ecore-input]) |
2533 | EFL_INTERNAL_DEPEND_PKG([ECORE_X], [ecore]) | 2497 | EFL_INTERNAL_DEPEND_PKG([ECORE_X], [ecore]) |
2498 | EFL_INTERNAL_DEPEND_PKG([ECORE_X], [eo]) | ||
2534 | EFL_INTERNAL_DEPEND_PKG([ECORE_X], [eina]) | 2499 | EFL_INTERNAL_DEPEND_PKG([ECORE_X], [eina]) |
2535 | 2500 | ||
2536 | ## Xlib | 2501 | ## Xlib |
@@ -2728,6 +2693,8 @@ fi | |||
2728 | ### Checks for libraries | 2693 | ### Checks for libraries |
2729 | EFL_PLATFORM_DEPEND([ECORE_IMF], [escape]) | 2694 | EFL_PLATFORM_DEPEND([ECORE_IMF], [escape]) |
2730 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF], [ecore]) | 2695 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF], [ecore]) |
2696 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF], [ecore-input]) | ||
2697 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF], [eo]) | ||
2731 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF], [eina]) | 2698 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF], [eina]) |
2732 | 2699 | ||
2733 | if test "x${want_ecore_imf}" = "xyes" ; then | 2700 | if test "x${want_ecore_imf}" = "xyes" ; then |
@@ -2811,6 +2778,7 @@ EFL_PLATFORM_DEPEND([ECORE_IMF_EVAS], [escape]) | |||
2811 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [ecore-imf]) | 2778 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [ecore-imf]) |
2812 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [ecore]) | 2779 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [ecore]) |
2813 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [evas]) | 2780 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [evas]) |
2781 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [eo]) | ||
2814 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [eina]) | 2782 | EFL_INTERNAL_DEPEND_PKG([ECORE_IMF_EVAS], [eina]) |
2815 | 2783 | ||
2816 | ### Checks for header files | 2784 | ### Checks for header files |
@@ -2857,6 +2825,7 @@ EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [ecore-input-evas]) | |||
2857 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [ecore-input]) | 2825 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [ecore-input]) |
2858 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [ecore]) | 2826 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [ecore]) |
2859 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [evas]) | 2827 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [evas]) |
2828 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [eo]) | ||
2860 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [eina]) | 2829 | EFL_INTERNAL_DEPEND_PKG([ECORE_EVAS], [eina]) |
2861 | 2830 | ||
2862 | ## modules | 2831 | ## modules |
@@ -2998,6 +2967,7 @@ EFL_LIB_START([Eio]) | |||
2998 | ### Checks for libraries | 2967 | ### Checks for libraries |
2999 | EFL_INTERNAL_DEPEND_PKG([EIO], [ecore]) | 2968 | EFL_INTERNAL_DEPEND_PKG([EIO], [ecore]) |
3000 | EFL_INTERNAL_DEPEND_PKG([EIO], [eet]) | 2969 | EFL_INTERNAL_DEPEND_PKG([EIO], [eet]) |
2970 | EFL_INTERNAL_DEPEND_PKG([EIO], [eo]) | ||
3001 | EFL_INTERNAL_DEPEND_PKG([EIO], [eina]) | 2971 | EFL_INTERNAL_DEPEND_PKG([EIO], [eina]) |
3002 | 2972 | ||
3003 | EFL_ADD_LIBS([EIO], [-lm]) | 2973 | EFL_ADD_LIBS([EIO], [-lm]) |
@@ -3031,6 +3001,7 @@ EFL_LIB_START([EDBus]) | |||
3031 | 3001 | ||
3032 | ### Checks for libraries | 3002 | ### Checks for libraries |
3033 | EFL_INTERNAL_DEPEND_PKG([EDBUS], [ecore]) | 3003 | EFL_INTERNAL_DEPEND_PKG([EDBUS], [ecore]) |
3004 | EFL_INTERNAL_DEPEND_PKG([EDBUS], [eo]) | ||
3034 | EFL_INTERNAL_DEPEND_PKG([EDBUS], [eina]) | 3005 | EFL_INTERNAL_DEPEND_PKG([EDBUS], [eina]) |
3035 | 3006 | ||
3036 | EFL_DEPEND_PKG([EDBUS], [DBUS], [dbus-1]) | 3007 | EFL_DEPEND_PKG([EDBUS], [DBUS], [dbus-1]) |
@@ -3068,7 +3039,8 @@ AC_DEFINE([SLOPPY_SPEC], [1], [Sloppy Spec Compliance]) | |||
3068 | EFL_INTERNAL_DEPEND_PKG([EFREET], [eet]) | 3039 | EFL_INTERNAL_DEPEND_PKG([EFREET], [eet]) |
3069 | EFL_INTERNAL_DEPEND_PKG([EFREET], [ecore]) | 3040 | EFL_INTERNAL_DEPEND_PKG([EFREET], [ecore]) |
3070 | EFL_INTERNAL_DEPEND_PKG([EFREET], [ecore-file]) | 3041 | EFL_INTERNAL_DEPEND_PKG([EFREET], [ecore-file]) |
3071 | EFL_INTERNAL_DEPEND_PKG([EFREET], [edbus2]) | 3042 | EFL_INTERNAL_DEPEND_PKG([EFREET], [edbus]) |
3043 | EFL_INTERNAL_DEPEND_PKG([EFREET], [eo]) | ||
3072 | EFL_INTERNAL_DEPEND_PKG([EFREET], [eina]) | 3044 | EFL_INTERNAL_DEPEND_PKG([EFREET], [eina]) |
3073 | 3045 | ||
3074 | ### Checks for header files | 3046 | ### Checks for header files |
@@ -3131,6 +3103,7 @@ AC_ARG_WITH([eject], | |||
3131 | ### Checks for libraries | 3103 | ### Checks for libraries |
3132 | EFL_INTERNAL_DEPEND_PKG([EEZE], [eina]) | 3104 | EFL_INTERNAL_DEPEND_PKG([EEZE], [eina]) |
3133 | EFL_INTERNAL_DEPEND_PKG([EEZE], [ecore]) | 3105 | EFL_INTERNAL_DEPEND_PKG([EEZE], [ecore]) |
3106 | EFL_INTERNAL_DEPEND_PKG([EEZE], [eo]) | ||
3134 | EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EEZE], [${want_mount}], [ecore-file]) | 3107 | EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EEZE], [${want_mount}], [ecore-file]) |
3135 | EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EEZE], [${want_mount}], [ecore-con]) | 3108 | EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EEZE], [${want_mount}], [ecore-con]) |
3136 | EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EEZE], [${want_mount}], [eet]) | 3109 | EFL_OPTIONAL_INTERNAL_DEPEND_PKG([EEZE], [${want_mount}], [eet]) |
@@ -3207,6 +3180,7 @@ EFL_PLATFORM_DEPEND([EPHYSICS], [evil]) | |||
3207 | EFL_INTERNAL_DEPEND_PKG([EPHYSICS], [eina]) | 3180 | EFL_INTERNAL_DEPEND_PKG([EPHYSICS], [eina]) |
3208 | EFL_INTERNAL_DEPEND_PKG([EPHYSICS], [evas]) | 3181 | EFL_INTERNAL_DEPEND_PKG([EPHYSICS], [evas]) |
3209 | EFL_INTERNAL_DEPEND_PKG([EPHYSICS], [ecore]) | 3182 | EFL_INTERNAL_DEPEND_PKG([EPHYSICS], [ecore]) |
3183 | EFL_INTERNAL_DEPEND_PKG([EPHYSICS], [eo]) | ||
3210 | 3184 | ||
3211 | EFL_DEPEND_PKG([EPHYSICS], [BULLET], [bullet >= 2.80]) | 3185 | EFL_DEPEND_PKG([EPHYSICS], [BULLET], [bullet >= 2.80]) |
3212 | 3186 | ||
@@ -3391,6 +3365,7 @@ EFL_PLATFORM_DEPEND([EINA], [evil]) | |||
3391 | 3365 | ||
3392 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [eina]) | 3366 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [eina]) |
3393 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [evas]) | 3367 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [evas]) |
3368 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [eo]) | ||
3394 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [ecore]) | 3369 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [ecore]) |
3395 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [ecore-evas]) | 3370 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [ecore-evas]) |
3396 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [ecore-file]) | 3371 | EFL_INTERNAL_DEPEND_PKG([ETHUMB], [ecore-file]) |
@@ -3428,6 +3403,7 @@ EFL_LIB_START([Ethumb_Client]) | |||
3428 | 3403 | ||
3429 | ### Checks for libraries | 3404 | ### Checks for libraries |
3430 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [eina]) | 3405 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [eina]) |
3406 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [eo]) | ||
3431 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [ecore]) | 3407 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [ecore]) |
3432 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [edbus]) | 3408 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [edbus]) |
3433 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [ethumb]) | 3409 | EFL_INTERNAL_DEPEND_PKG([ETHUMB_CLIENT], [ethumb]) |
@@ -16,18 +16,32 @@ dnl Adds a pkg-config dependency on another EFL. | |||
16 | AC_DEFUN([EFL_INTERNAL_DEPEND_PKG], | 16 | AC_DEFUN([EFL_INTERNAL_DEPEND_PKG], |
17 | [dnl | 17 | [dnl |
18 | m4_pushdef([DOWNEFL], m4_translit([$1], [-A-Z], [_a-z]))dnl | 18 | m4_pushdef([DOWNEFL], m4_translit([$1], [-A-Z], [_a-z]))dnl |
19 | m4_pushdef([DOWNOTHER], m4_translit([$2], [-A-Z], [_a-z]))dnl | ||
19 | dnl TODO: we need to fix the package config names for 2.0 | 20 | dnl TODO: we need to fix the package config names for 2.0 |
20 | dnl TODO: and make them uniform in scheme. | 21 | dnl TODO: and make them uniform in scheme. |
21 | depname="$2" | 22 | depname="$2" |
22 | case "${depname}" in | 23 | libdirname="m4_defn([DOWNOTHER])" |
24 | libname="m4_defn([DOWNOTHER])" | ||
25 | case "m4_defn([DOWNOTHER])" in | ||
23 | edbus) | 26 | edbus) |
24 | depname="edbus2" | 27 | depname="edbus2" |
28 | libname="edbus2" | ||
25 | ;; | 29 | ;; |
26 | ethumb-client) | 30 | ethumb_client) |
27 | depname="ethumb_client" | 31 | depname="ethumb_client" |
32 | libdirname="ethumb/client" | ||
33 | ;; | ||
34 | ecore_input_evas) | ||
35 | libdirname="ecore_input" | ||
36 | ;; | ||
37 | ecore_imf_evas) | ||
38 | libdirname="ecore_imf" | ||
28 | ;; | 39 | ;; |
29 | esac | 40 | esac |
30 | requirements_pc_[]m4_defn([DOWNEFL])="${depname} >= ${PACKAGE_VERSION} ${requirements_pc_[][]m4_defn([DOWNEFL])}" | 41 | requirements_pc_[]m4_defn([DOWNEFL])="${depname} >= ${PACKAGE_VERSION} ${requirements_pc_[][]m4_defn([DOWNEFL])}" |
42 | requirements_cflags_[]m4_defn([DOWNEFL])="-I\$(top_srcdir)/src/lib/${libdirname} -I\$(top_builddir)/src/lib/${libdirname} ${requirements_cflags_[][]m4_defn([DOWNEFL])}" | ||
43 | requirements_internal_libs_[]m4_defn([DOWNEFL])="lib/${libdirname}/lib${libname}.la ${requirements_internal_libs_[][]m4_defn([DOWNEFL])}" | ||
44 | m4_popdef([DOWNOTHER])dnl | ||
31 | m4_popdef([DOWNEFL])dnl | 45 | m4_popdef([DOWNEFL])dnl |
32 | ]) | 46 | ]) |
33 | 47 | ||
@@ -35,32 +49,24 @@ dnl EFL_PLATFORM_DEPEND(EFL, PLATFORM) | |||
35 | dnl PLATFORM is one of: all, evil, escape, exotic | 49 | dnl PLATFORM is one of: all, evil, escape, exotic |
36 | AC_DEFUN([EFL_PLATFORM_DEPEND], | 50 | AC_DEFUN([EFL_PLATFORM_DEPEND], |
37 | [dnl | 51 | [dnl |
38 | m4_pushdef([DOWNEFL], m4_translit([$1], [-A-Z], [_a-z]))dnl | 52 | m4_pushdef([DOWNOTHER], m4_translit([$2], [-A-Z], [_a-z]))dnl |
39 | case "$2" in | 53 | case "m4_defn([DOWNOTHER])" in |
40 | all) | 54 | all) |
41 | requirements_pc_[]m4_defn([DOWNEFL])="${platform_pc} ${requirements_pc_[][]m4_defn([DOWNEFL])}" | 55 | if test "x${efl_lib_optional_evil}" = "xyes"; then |
42 | requirements_libs_[]m4_defn([DOWNEFL])="${platform_libs} ${requirements_libs_[][]m4_defn([DOWNEFL])}" | 56 | EFL_INTERNAL_DEPEND_PKG([$1], [evil]) |
43 | requirements_cflags_[]m4_defn([DOWNEFL])="${platform_cflags} ${requirements_cflags_[][]m4_defn([DOWNEFL])}" | 57 | elif test "x${efl_lib_optional_escape}" = "xyes"; then |
44 | ;; | 58 | EFL_INTERNAL_DEPEND_PKG([$1], [escape]) |
45 | evil) | 59 | elif test "x${efl_lib_optional_exotic}" = "xyes"; then |
46 | requirements_pc_[]m4_defn([DOWNEFL])="${platform_pc_evil} ${requirements_pc_[][]m4_defn([DOWNEFL])}" | 60 | EFL_INTERNAL_DEPEND_PKG([$1], [exotic]) |
47 | requirements_libs_[]m4_defn([DOWNEFL])="${platform_libs_evil} ${requirements_libs_[][]m4_defn([DOWNEFL])}" | 61 | fi |
48 | requirements_cflags_[]m4_defn([DOWNEFL])="${platform_cflags_evil} ${requirements_cflags_[][]m4_defn([DOWNEFL])}" | ||
49 | ;; | ||
50 | escape) | ||
51 | requirements_pc_[]m4_defn([DOWNEFL])="${platform_pc_escape} ${requirements_pc_[][]m4_defn([DOWNEFL])}" | ||
52 | requirements_libs_[]m4_defn([DOWNEFL])="${platform_libs_escape} ${requirements_libs_[][]m4_defn([DOWNEFL])}" | ||
53 | requirements_cflags_[]m4_defn([DOWNEFL])="${platform_cflags_escape} ${requirements_cflags_[][]m4_defn([DOWNEFL])}" | ||
54 | ;; | ||
55 | exotic) | ||
56 | requirements_pc_[]m4_defn([DOWNEFL])="${platform_pc_exotic} ${requirements_pc_[][]m4_defn([DOWNEFL])}" | ||
57 | requirements_libs_[]m4_defn([DOWNEFL])="${platform_libs_exotic} ${requirements_libs_[][]m4_defn([DOWNEFL])}" | ||
58 | requirements_cflags_[]m4_defn([DOWNEFL])="${platform_cflags_exotic} ${requirements_cflags_[][]m4_defn([DOWNEFL])}" | ||
59 | ;; | 62 | ;; |
60 | *) | 63 | *) |
61 | AC_MSG_ERROR([Unknown platform: $2]) | 64 | if test "x${efl_lib_optional_[]m4_defn([DOWNOTHER])}" = "xyes"; then |
65 | EFL_INTERNAL_DEPEND_PKG([$1], [$2]) | ||
66 | fi | ||
67 | ;; | ||
62 | esac | 68 | esac |
63 | m4_popdef([DOWNEFL])dnl | 69 | m4_popdef([DOWNOTHER])dnl |
64 | ]) | 70 | ]) |
65 | 71 | ||
66 | dnl EFL_CRYPTO_DEPEND(EFL) | 72 | dnl EFL_CRYPTO_DEPEND(EFL) |
@@ -156,12 +162,16 @@ AC_DEFUN([EFL_LIB_START], | |||
156 | m4_pushdef([DOWN], m4_translit([$1], [-A-Z], [_a-z]))dnl | 162 | m4_pushdef([DOWN], m4_translit([$1], [-A-Z], [_a-z]))dnl |
157 | m4_pushdef([UP], m4_translit([$1], [-a-z], [_A-Z]))dnl | 163 | m4_pushdef([UP], m4_translit([$1], [-a-z], [_A-Z]))dnl |
158 | 164 | ||
165 | requirements_internal_libs_[]m4_defn([DOWN])="" | ||
159 | requirements_libs_[]m4_defn([DOWN])="" | 166 | requirements_libs_[]m4_defn([DOWN])="" |
160 | requirements_cflags_[]m4_defn([DOWN])="" | 167 | requirements_cflags_[]m4_defn([DOWN])="" |
161 | requirements_pc_[]m4_defn([DOWN])="" | 168 | requirements_pc_[]m4_defn([DOWN])="" |
162 | requirements_pc_deps_[]m4_defn([DOWN])="" | 169 | requirements_pc_deps_[]m4_defn([DOWN])="" |
163 | 170 | ||
164 | m4_defn([UP])_LIBS="${m4_defn([UP])_LIBS}" | 171 | m4_defn([UP])_LIBS="${m4_defn([UP])_LIBS}" |
172 | m4_defn([UP])_INTERNAL_LIBS="${m4_defn([UP])_INTERNAL_LIBS}" | ||
173 | USE_[]m4_defn([UP])_LIBS="${USE_[]m4_defn([UP])_LIBS}" | ||
174 | USE_[]m4_defn([UP])_INTERNAL_LIBS="${USE_[]m4_defn([UP])_INTERNAL_LIBS}" | ||
165 | m4_defn([UP])_LDFLAGS="${m4_defn([UP])_LDFLAGS}" | 175 | m4_defn([UP])_LDFLAGS="${m4_defn([UP])_LDFLAGS}" |
166 | m4_defn([UP])_CFLAGS="${m4_defn([UP])_CFLAGS}" | 176 | m4_defn([UP])_CFLAGS="${m4_defn([UP])_CFLAGS}" |
167 | 177 | ||
@@ -169,6 +179,9 @@ AC_SUBST([requirements_libs_]m4_defn([DOWN])) | |||
169 | AC_SUBST([requirements_cflags_]m4_defn([DOWN])) | 179 | AC_SUBST([requirements_cflags_]m4_defn([DOWN])) |
170 | AC_SUBST([requirements_pc_]m4_defn([DOWN])) | 180 | AC_SUBST([requirements_pc_]m4_defn([DOWN])) |
171 | AC_SUBST(m4_defn([UP])[_LIBS]) | 181 | AC_SUBST(m4_defn([UP])[_LIBS]) |
182 | AC_SUBST(m4_defn([UP])[_INTERNAL_LIBS]) | ||
183 | AC_SUBST([USE_]m4_defn([UP])[_LIBS]) | ||
184 | AC_SUBST([USE_]m4_defn([UP])[_INTERNAL_LIBS]) | ||
172 | AC_SUBST(m4_defn([UP])[_LDFLAGS]) | 185 | AC_SUBST(m4_defn([UP])[_LDFLAGS]) |
173 | AC_SUBST(m4_defn([UP])[_CFLAGS]) | 186 | AC_SUBST(m4_defn([UP])[_CFLAGS]) |
174 | 187 | ||
@@ -185,9 +198,29 @@ AC_DEFUN([EFL_LIB_END], | |||
185 | m4_pushdef([DOWN], m4_translit([$1], [-A-Z], [_a-z]))dnl | 198 | m4_pushdef([DOWN], m4_translit([$1], [-A-Z], [_a-z]))dnl |
186 | m4_pushdef([UP], m4_translit([$1], [-a-z], [_A-Z]))dnl | 199 | m4_pushdef([UP], m4_translit([$1], [-a-z], [_A-Z]))dnl |
187 | 200 | ||
188 | m4_defn([UP])_LDFLAGS="${m4_defn([UP])_LDFLAGS} ${EFL_LDFLAGS}" | 201 | libdirname="m4_defn([DOWN])" |
189 | m4_defn([UP])_LIBS="${m4_defn([UP])_LIBS} ${m4_defn([UP])_LDFLAGS} ${EFL_LIBS} ${requirements_libs_[]m4_defn([DOWN])} ${requirements_libs_efl} " | 202 | libname="m4_defn([DOWN])" |
190 | m4_defn([UP])_CFLAGS="${m4_defn([UP])_CFLAGS} ${EFL_CFLAGS} ${requirements_cflags_[]m4_defn([DOWN])} ${requirements_cflags_efl}" | 203 | case "m4_defn([DOWN])" in |
204 | edbus) | ||
205 | libname="edbus2" | ||
206 | ;; | ||
207 | ethumb_client) | ||
208 | libdirname="ethumb/client" | ||
209 | ;; | ||
210 | ecore_input_evas) | ||
211 | libdirname="ecore_input" | ||
212 | ;; | ||
213 | ecore_imf_evas) | ||
214 | libdirname="ecore_imf" | ||
215 | ;; | ||
216 | esac | ||
217 | |||
218 | m4_defn([UP])_LDFLAGS="${m4_defn([UP])_LDFLAGS} ${EFL_COV_CFLAGS} ${EFL_LDFLAGS}" | ||
219 | m4_defn([UP])_LIBS="${m4_defn([UP])_LIBS} ${m4_defn([UP])_LDFLAGS} ${EFL_COV_LIBS} ${EFL_LIBS} ${requirements_internal_libs_[]m4_defn([DOWN])} ${requirements_libs_[]m4_defn([DOWN])} ${requirements_libs_efl} " | ||
220 | m4_defn([UP])_INTERNAL_LIBS="${m4_defn([UP])_INTERNAL_LIBS} ${requirements_internal_libs_[]m4_defn([DOWN])}" | ||
221 | USE_[]m4_defn([UP])_LIBS="${m4_defn([UP])_LIBS} lib/${libdirname}/lib${libname}.la" | ||
222 | USE_[]m4_defn([UP])_INTERNAL_LIBS="${m4_defn([UP])_INTERNAL_LIBS} lib/${libdirname}/lib${libname}.la" | ||
223 | m4_defn([UP])_CFLAGS="${m4_defn([UP])_CFLAGS} ${EFL_CFLAGS} -I\$(top_srcdir)/src/lib/${libdirname} -I\$(top_builddir)/src/lib/${libdirname} ${requirements_cflags_[]m4_defn([DOWN])} ${requirements_cflags_efl} -DEFL_[]m4_defn([UP])_BUILD=1" | ||
191 | requirements_pc_[]m4_defn([DOWN])="${requirements_pc_[]m4_defn([DOWN])} ${requirements_pc_efl}" | 224 | requirements_pc_[]m4_defn([DOWN])="${requirements_pc_[]m4_defn([DOWN])} ${requirements_pc_efl}" |
192 | requirements_pc_deps_[]m4_defn([DOWN])="${requirements_pc_deps_[]m4_defn([DOWN])} ${requirements_pc_deps_efl}" | 225 | requirements_pc_deps_[]m4_defn([DOWN])="${requirements_pc_deps_[]m4_defn([DOWN])} ${requirements_pc_deps_efl}" |
193 | 226 | ||
diff --git a/src/Makefile_EDBus.am b/src/Makefile_EDBus.am index 600aedf744..4920ae02a3 100644 --- a/src/Makefile_EDBus.am +++ b/src/Makefile_EDBus.am | |||
@@ -34,22 +34,9 @@ lib/edbus/edbus_message_from_eina_value.c | |||
34 | 34 | ||
35 | lib_edbus_libedbus2_la_CPPFLAGS = \ | 35 | lib_edbus_libedbus2_la_CPPFLAGS = \ |
36 | -include $(top_builddir)/config.h \ | 36 | -include $(top_builddir)/config.h \ |
37 | -I$(top_srcdir)/src/lib/eina \ | ||
38 | -I$(top_builddir)/src/lib/eina \ | ||
39 | -I$(top_srcdir)/src/lib/eo \ | ||
40 | -I$(top_srcdir)/src/lib/ecore \ | ||
41 | -I$(top_srcdir)/src/lib/edbus \ | ||
42 | -DEFL_EDBUS_BUILD \ | ||
43 | @EFL_COV_CFLAGS@ \ | ||
44 | @EDBUS_CFLAGS@ | 37 | @EDBUS_CFLAGS@ |
45 | 38 | lib_edbus_libedbus2_la_LIBADD = @EDBUS_LIBS@ | |
46 | lib_edbus_libedbus2_la_LIBADD = \ | 39 | lib_edbus_libedbus2_la_DEPENDENCIES = @EDBUS_INTERNAL_LIBS@ |
47 | lib/eina/libeina.la \ | ||
48 | lib/eo/libeo.la \ | ||
49 | lib/ecore/libecore.la \ | ||
50 | @EDBUS_LIBS@ \ | ||
51 | @EFL_COV_LIBS@ | ||
52 | |||
53 | lib_edbus_libedbus2_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 40 | lib_edbus_libedbus2_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
54 | 41 | ||
55 | ### Binary | 42 | ### Binary |
@@ -65,21 +52,9 @@ bin/edbus/source_client.c \ | |||
65 | bin/edbus/client.c | 52 | bin/edbus/client.c |
66 | 53 | ||
67 | bin_edbus_edbus_codegen_CPPFLAGS = \ | 54 | bin_edbus_edbus_codegen_CPPFLAGS = \ |
68 | -I$(top_srcdir)/src/lib/eina \ | ||
69 | -I$(top_builddir)/src/lib/eina \ | ||
70 | -I$(top_srcdir)/src/lib/eo \ | ||
71 | -I$(top_srcdir)/src/lib/ecore \ | ||
72 | -I$(top_srcdir)/src/lib/edbus \ | ||
73 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 55 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
74 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 56 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
75 | -DPACKAGE_DATA_DIR=\"$(datadir)/edbus\" \ | 57 | -DPACKAGE_DATA_DIR=\"$(datadir)/edbus\" \ |
76 | @EDBUS_CFLAGS@ \ | 58 | @EDBUS_CFLAGS@ |
77 | @EFL_COV_CFLAGS@ | 59 | bin_edbus_edbus_codegen_LDADD = @USE_EDBUS_LIBS@ |
78 | 60 | bin_edbus_edbus_codegen_DEPENDENCIES = @USE_EDBUS_INTERNAL_LIBS@ | |
79 | bin_edbus_edbus_codegen_LDADD = \ | ||
80 | lib/eina/libeina.la \ | ||
81 | lib/eo/libeo.la \ | ||
82 | lib/ecore/libecore.la \ | ||
83 | lib/edbus/libedbus2.la \ | ||
84 | @EDBUS_LDFLAGS@ \ | ||
85 | @EFL_COV_LIBS@ | ||
diff --git a/src/Makefile_EPhysics.am b/src/Makefile_EPhysics.am index b30d9092ca..33748effef 100644 --- a/src/Makefile_EPhysics.am +++ b/src/Makefile_EPhysics.am | |||
@@ -21,31 +21,9 @@ lib/ephysics/ephysics_quaternion.cpp \ | |||
21 | lib/ephysics/ephysics_shape.cpp \ | 21 | lib/ephysics/ephysics_shape.cpp \ |
22 | lib/ephysics/ephysics_world.cpp | 22 | lib/ephysics/ephysics_world.cpp |
23 | 23 | ||
24 | lib_ephysics_libephysics_la_CPPFLAGS = \ | 24 | lib_ephysics_libephysics_la_CPPFLAGS = @EPHYSICS_CFLAGS@ |
25 | -I$(top_srcdir)/src/lib/eina \ | 25 | lib_ephysics_libephysics_la_LIBADD = @EPHYSICS_LIBS@ |
26 | -I$(top_builddir)/src/lib/eina \ | 26 | lib_ephysics_libephysics_la_DEPENDENCIES = @EPHYSICS_INTERNAL_LIBS@ |
27 | -I$(top_srcdir)/src/lib/eo \ | ||
28 | -I$(top_builddir)/src/lib/eo \ | ||
29 | -I$(top_srcdir)/src/lib/ecore \ | ||
30 | -I$(top_builddir)/src/lib/ecore \ | ||
31 | -I$(top_srcdir)/src/lib/evas \ | ||
32 | -I$(top_builddir)/src/lib/evas \ | ||
33 | -I$(top_srcdir)/src/lib/ephysics \ | ||
34 | -I$(top_builddir)/src/lib/ephysics \ | ||
35 | @EFL_COV_CFLAGS@ \ | ||
36 | @EPHYSICS_CFLAGS@ \ | ||
37 | @USE_EVIL_CFLAGS@ \ | ||
38 | -DEFL_EPHYSICS_BUILD | ||
39 | |||
40 | lib_ephysics_libephysics_la_LIBADD = \ | ||
41 | lib/eina/libeina.la \ | ||
42 | lib/eo/libeo.la \ | ||
43 | lib/ecore/libecore.la \ | ||
44 | lib/evas/libevas.la \ | ||
45 | @EFL_COV_LIBS@ \ | ||
46 | @USE_EVIL_LIBS@ \ | ||
47 | @EPHYSICS_LIBS@ | ||
48 | |||
49 | lib_ephysics_libephysics_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 27 | lib_ephysics_libephysics_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
50 | 28 | ||
51 | endif | 29 | endif |
diff --git a/src/Makefile_Ecore.am b/src/Makefile_Ecore.am index 1d3a6a72cd..97bb235519 100644 --- a/src/Makefile_Ecore.am +++ b/src/Makefile_Ecore.am | |||
@@ -48,25 +48,9 @@ lib_ecore_libecore_la_SOURCES += lib/ecore/ecore_signal.c lib/ecore/ecore_exe.c | |||
48 | endif | 48 | endif |
49 | endif | 49 | endif |
50 | 50 | ||
51 | lib_ecore_libecore_la_CPPFLAGS = \ | 51 | lib_ecore_libecore_la_CPPFLAGS = @ECORE_CFLAGS@ |
52 | -I$(top_srcdir)/src/lib/eina \ | 52 | lib_ecore_libecore_la_LIBADD = @ECORE_LIBS@ |
53 | -I$(top_builddir)/src/lib/eina \ | 53 | lib_ecore_libecore_la_DEPENDENCIES = @ECORE_INTERNAL_LIBS@ |
54 | -I$(top_srcdir)/src/lib/eo \ | ||
55 | -I$(top_srcdir)/src/lib/ecore \ | ||
56 | -DEFL_ECORE_BUILD \ | ||
57 | @EFL_COV_CFLAGS@ \ | ||
58 | @ECORE_CFLAGS@ \ | ||
59 | @USE_EVIL_CFLAGS@ \ | ||
60 | @USE_ESCAPE_CFLAGS@ | ||
61 | |||
62 | lib_ecore_libecore_la_LIBADD = \ | ||
63 | lib/eo/libeo.la \ | ||
64 | lib/eina/libeina.la \ | ||
65 | @USE_EVIL_LIBS@ \ | ||
66 | @USE_ESCAPE_LIBS@ \ | ||
67 | @ECORE_LIBS@ \ | ||
68 | @EFL_COV_LIBS@ | ||
69 | |||
70 | lib_ecore_libecore_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 54 | lib_ecore_libecore_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
71 | 55 | ||
72 | ### Unit tests | 56 | ### Unit tests |
@@ -84,32 +68,33 @@ tests/ecore/ecore_test_ecore_imf.c \ | |||
84 | tests/ecore/ecore_suite.h | 68 | tests/ecore/ecore_suite.h |
85 | 69 | ||
86 | tests_ecore_ecore_suite_CPPFLAGS = \ | 70 | tests_ecore_ecore_suite_CPPFLAGS = \ |
87 | -I$(top_srcdir)/src/lib/eina \ | ||
88 | -I$(top_builddir)/src/lib/eina \ | ||
89 | -I$(top_srcdir)/src/lib/eo \ | ||
90 | -I$(top_srcdir)/src/lib/ecore \ | ||
91 | -I$(top_srcdir)/src/lib/ecore_audio \ | ||
92 | -I$(top_srcdir)/src/lib/ecore_con \ | ||
93 | -I$(top_srcdir)/src/lib/ecore_file \ | ||
94 | -I$(top_srcdir)/src/lib/ecore_x \ | ||
95 | -I$(top_builddir)/src/lib/ecore_x \ | ||
96 | -I$(top_srcdir)/src/lib/ecore_imf \ | ||
97 | -I$(top_builddir)/src/lib/ecore_imf \ | ||
98 | -DTESTS_SRC_DIR=\"`pwd`/$(top_srcdir)\" \ | 71 | -DTESTS_SRC_DIR=\"`pwd`/$(top_srcdir)\" \ |
99 | @CHECK_CFLAGS@ | 72 | @CHECK_CFLAGS@ \ |
73 | @ECORE_CFLAGS@ \ | ||
74 | @ECORE_AUDIO_CFLAGS@ \ | ||
75 | @ECORE_CON_CFLAGS@ \ | ||
76 | @ECORE_FILE_CFLAGS@ \ | ||
77 | @ECORE_X_CFLAGS@ \ | ||
78 | @ECORE_IMF_CFLAGS@ | ||
100 | 79 | ||
101 | tests_ecore_ecore_suite_LDADD = \ | 80 | tests_ecore_ecore_suite_LDADD = \ |
102 | lib/ecore_imf/libecore_imf.la \ | 81 | @CHECK_LIBS@ \ |
103 | lib/ecore_con/libecore_con.la \ | 82 | @USE_ECORE_LIBS@ \ |
104 | lib/ecore_file/libecore_file.la \ | 83 | @USE_ECORE_AUDIO_LIBS@ \ |
105 | lib/ecore/libecore.la \ | 84 | @USE_ECORE_CON_LIBS@ \ |
106 | lib/eina/libeina.la \ | 85 | @USE_ECORE_FILE_LIBS@ \ |
107 | @ECORE_LDFLAGS@ \ | 86 | @USE_ECORE_X_LIBS@ \ |
108 | @CHECK_LIBS@ | 87 | @USE_ECORE_IMF_LIBS@ |
88 | tests_ecore_ecore_suite_DEPENDENCIES = \ | ||
89 | @USE_ECORE_INTERNAL_LIBS@ \ | ||
90 | @USE_ECORE_AUDIO_INTERNAL_LIBS@ \ | ||
91 | @USE_ECORE_CON_INTERNAL_LIBS@ \ | ||
92 | @USE_ECORE_FILE_INTERNAL_LIBS@ \ | ||
93 | @USE_ECORE_X_INTERNAL_LIBS@ \ | ||
94 | @USE_ECORE_IMF_INTERNAL_LIBS@ | ||
109 | 95 | ||
110 | if HAVE_ECORE_AUDIO | 96 | if HAVE_ECORE_AUDIO |
111 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_audio.c | 97 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_audio.c |
112 | tests_ecore_ecore_suite_LDADD += lib/ecore_audio/libecore_audio.la | ||
113 | endif | 98 | endif |
114 | 99 | ||
115 | endif | 100 | endif |
diff --git a/src/Makefile_Ecore_Audio.am b/src/Makefile_Ecore_Audio.am index d2a19a11ac..d22430c9ab 100644 --- a/src/Makefile_Ecore_Audio.am +++ b/src/Makefile_Ecore_Audio.am | |||
@@ -17,24 +17,9 @@ lib/ecore_audio/ecore_audio_tone.c \ | |||
17 | lib/ecore_audio/ecore_audio_custom.c \ | 17 | lib/ecore_audio/ecore_audio_custom.c \ |
18 | lib/ecore_audio/ecore_audio_private.h | 18 | lib/ecore_audio/ecore_audio_private.h |
19 | 19 | ||
20 | lib_ecore_audio_libecore_audio_la_CPPFLAGS = \ | 20 | lib_ecore_audio_libecore_audio_la_CPPFLAGS = @ECORE_AUDIO_CFLAGS@ |
21 | -I$(top_srcdir)/src/lib/eina \ | 21 | lib_ecore_audio_libecore_audio_la_LIBADD = @ECORE_AUDIO_LIBS@ |
22 | -I$(top_builddir)/src/lib/eina \ | 22 | lib_ecore_audio_libecore_audio_la_DEPENDENCIES = @ECORE_AUDIO_INTERNAL_LIBS@ |
23 | -I$(top_srcdir)/src/lib/eo \ | ||
24 | -I$(top_srcdir)/src/lib/eet \ | ||
25 | -I$(top_srcdir)/src/lib/ecore \ | ||
26 | -DEFL_ECORE_AUDIO_BUILD \ | ||
27 | @EFL_COV_CFLAGS@ \ | ||
28 | @ECORE_AUDIO_CFLAGS@ | ||
29 | |||
30 | lib_ecore_audio_libecore_audio_la_LIBADD = \ | ||
31 | lib/ecore/libecore.la \ | ||
32 | lib/eet/libeet.la \ | ||
33 | lib/eo/libeo.la \ | ||
34 | lib/eina/libeina.la \ | ||
35 | @ECORE_AUDIO_LIBS@ \ | ||
36 | @EFL_COV_LIBS@ | ||
37 | |||
38 | lib_ecore_audio_libecore_audio_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 23 | lib_ecore_audio_libecore_audio_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
39 | 24 | ||
40 | endif | 25 | endif |
diff --git a/src/Makefile_Ecore_Cocoa.am b/src/Makefile_Ecore_Cocoa.am index b7fe49a185..10b7cd2fb8 100644 --- a/src/Makefile_Ecore_Cocoa.am +++ b/src/Makefile_Ecore_Cocoa.am | |||
@@ -14,22 +14,8 @@ lib/ecore_cocoa/ecore_cocoa.m \ | |||
14 | lib/ecore_cocoa/ecore_cocoa_window.m \ | 14 | lib/ecore_cocoa/ecore_cocoa_window.m \ |
15 | lib/ecore_cocoa/ecore_cocoa_private.h | 15 | lib/ecore_cocoa/ecore_cocoa_private.h |
16 | 16 | ||
17 | lib_ecore_cocoa_libecore_cocoa_la_CPPFLAGS = \ | 17 | lib_ecore_cocoa_libecore_cocoa_la_CPPFLAGS = @ECORE_COCOA_CFLAGS@ |
18 | -I$(top_srcdir)/src/lib/eina \ | 18 | lib_ecore_cocoa_libecore_cocoa_la_LIBADD = @ECORE_COCOA_LIBS@ |
19 | -I$(top_builddir)/src/lib/eina \ | 19 | lib_ecore_cocoa_libecore_cocoa_la_DEPENDENCIES = @ECORE_COCOA_INTERNAL_LIBS@ |
20 | -I$(top_srcdir)/src/lib/eo \ | ||
21 | -I$(top_srcdir)/src/lib/ecore \ | ||
22 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
23 | -I$(top_srcdir)/src/lib/ecore_cocoa \ | ||
24 | @ECORE_COCOA_CFLAGS@ \ | ||
25 | @EFL_COV_CFLAGS@ | ||
26 | |||
27 | lib_ecore_cocoa_libecore_cocoa_la_LIBADD = \ | ||
28 | lib/ecore_input/libecore_input.la \ | ||
29 | lib/ecore/libecore.la \ | ||
30 | lib/eo/libeo.la \ | ||
31 | lib/eina/libeina.la \ | ||
32 | @ECORE_COCOA_LIBS@ | ||
33 | |||
34 | lib_ecore_cocoa_libecore_cocoa_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 20 | lib_ecore_cocoa_libecore_cocoa_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
35 | endif | 21 | endif |
diff --git a/src/Makefile_Ecore_Con.am b/src/Makefile_Ecore_Con.am index dbbfa1dd31..549a64d169 100644 --- a/src/Makefile_Ecore_Con.am +++ b/src/Makefile_Ecore_Con.am | |||
@@ -33,24 +33,7 @@ lib_ecore_con_libecore_con_la_SOURCES += lib/ecore_con/ecore_con_info.c | |||
33 | endif | 33 | endif |
34 | endif | 34 | endif |
35 | 35 | ||
36 | lib_ecore_con_libecore_con_la_CPPFLAGS = \ | 36 | lib_ecore_con_libecore_con_la_CPPFLAGS = @ECORE_CON_CFLAGS@ |
37 | -I$(top_srcdir)/src/lib/eina \ | 37 | lib_ecore_con_libecore_con_la_LIBADD = @ECORE_CON_LIBS@ |
38 | -I$(top_builddir)/src/lib/eina \ | 38 | lib_ecore_con_libecore_con_la_DEPENDENCIES = @ECORE_CON_INTERNAL_LIBS@ |
39 | -I$(top_srcdir)/src/lib/eo \ | ||
40 | -I$(top_srcdir)/src/lib/eet \ | ||
41 | -I$(top_srcdir)/src/lib/ecore \ | ||
42 | -I$(top_srcdir)/src/lib/ecore_con \ | ||
43 | -DEFL_ECORE_CON_BUILD \ | ||
44 | @EFL_COV_CFLAGS@ \ | ||
45 | @ECORE_CON_CFLAGS@ \ | ||
46 | @USE_EVIL_CFLAGS@ | ||
47 | |||
48 | lib_ecore_con_libecore_con_la_LIBADD = \ | ||
49 | lib/ecore/libecore.la \ | ||
50 | lib/eet/libeet.la \ | ||
51 | lib/eo/libeo.la \ | ||
52 | lib/eina/libeina.la \ | ||
53 | @USE_EVIL_LIBS@ | ||
54 | |||
55 | lib_ecore_con_libecore_con_la_LIBADD += @ECORE_CON_LIBS@ @EFL_COV_LIBS@ | ||
56 | lib_ecore_con_libecore_con_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 39 | lib_ecore_con_libecore_con_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
diff --git a/src/Makefile_Ecore_Evas.am b/src/Makefile_Ecore_Evas.am index 62cea7fcd1..6dfd6c4bc1 100644 --- a/src/Makefile_Ecore_Evas.am +++ b/src/Makefile_Ecore_Evas.am | |||
@@ -19,34 +19,12 @@ lib/ecore_evas/ecore_evas_private.h \ | |||
19 | lib/ecore_evas/ecore_evas_util.c | 19 | lib/ecore_evas/ecore_evas_util.c |
20 | 20 | ||
21 | lib_ecore_evas_libecore_evas_la_CPPFLAGS = \ | 21 | lib_ecore_evas_libecore_evas_la_CPPFLAGS = \ |
22 | -I$(top_srcdir)/src/lib/eina \ | ||
23 | -I$(top_builddir)/src/lib/eina \ | ||
24 | -I$(top_srcdir)/src/lib/eo \ | ||
25 | -I$(top_srcdir)/src/lib/evas \ | ||
26 | -I$(top_srcdir)/src/lib/ecore \ | ||
27 | -I$(top_srcdir)/src/lib/ecore_ipc \ | ||
28 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
29 | -I$(top_srcdir)/src/lib/ecore_input_evas \ | ||
30 | -I$(top_srcdir)/src/lib/ecore_evas \ | ||
31 | -I$(top_srcdir)/src/modules/evas/engines/buffer \ | 22 | -I$(top_srcdir)/src/modules/evas/engines/buffer \ |
32 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 23 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
33 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ | 24 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
34 | -DEFL_ECORE_EVAS_BUILD \ | 25 | @ECORE_EVAS_CFLAGS@ |
35 | @ECORE_EVAS_CFLAGS@ \ | 26 | lib_ecore_evas_libecore_evas_la_LIBADD = @ECORE_EVAS_LIBS@ |
36 | @EFL_COV_CFLAGS@ \ | 27 | lib_ecore_evas_libecore_evas_la_DEPENDENCIES = @ECORE_EVAS_INTERNAL_LIBS@ |
37 | @USE_EVIL_CFLAGS@ | ||
38 | |||
39 | lib_ecore_evas_libecore_evas_la_LIBADD = \ | ||
40 | lib/ecore_input/libecore_input_evas.la \ | ||
41 | lib/ecore_input/libecore_input.la \ | ||
42 | lib/ecore/libecore.la \ | ||
43 | lib/evas/libevas.la \ | ||
44 | lib/eo/libeo.la \ | ||
45 | lib/eina/libeina.la \ | ||
46 | @ECORE_EVAS_LIBS@ \ | ||
47 | @EFL_COV_LIBS@ | ||
48 | |||
49 | lib_ecore_evas_libecore_evas_la_LIBADD += @EFL_COV_LIBS@ | ||
50 | lib_ecore_evas_libecore_evas_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 28 | lib_ecore_evas_libecore_evas_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
51 | 29 | ||
52 | # Engines | 30 | # Engines |
@@ -57,8 +35,16 @@ modules/ecore_evas/engines/extn/ecore_evas_extn.c | |||
57 | ecoreevasengineextnpkgdir = $(libdir)/ecore_evas/engines/extn/$(MODULE_ARCH) | 35 | ecoreevasengineextnpkgdir = $(libdir)/ecore_evas/engines/extn/$(MODULE_ARCH) |
58 | ecoreevasengineextnpkg_LTLIBRARIES = modules/ecore_evas/engines/extn/module.la | 36 | ecoreevasengineextnpkg_LTLIBRARIES = modules/ecore_evas/engines/extn/module.la |
59 | modules_ecore_evas_engines_extn_module_la_SOURCES = $(EXTNSOURCES) | 37 | modules_ecore_evas_engines_extn_module_la_SOURCES = $(EXTNSOURCES) |
60 | modules_ecore_evas_engines_extn_module_la_CPPFLAGS = $(lib_ecore_evas_libecore_evas_la_CPPFLAGS) | 38 | modules_ecore_evas_engines_extn_module_la_CPPFLAGS = \ |
61 | modules_ecore_evas_engines_extn_module_la_LIBADD = lib/ecore_ipc/libecore_ipc.la lib/ecore_evas/libecore_evas.la | 39 | @ECORE_EVAS_CFLAGS@ \ |
40 | @ECORE_IPC_CFLAGS@ \ | ||
41 | -I$(top_srcdir)/src/modules/evas/engines/buffer | ||
42 | modules_ecore_evas_engines_extn_module_la_LIBADD = \ | ||
43 | @USE_ECORE_EVAS_LIBS@ \ | ||
44 | @USE_ECORE_IPC_LIBS@ | ||
45 | modules_ecore_evas_engines_extn_module_la_DEPENDENCIES = \ | ||
46 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
47 | @USE_ECORE_IPC_INTERNAL_LIBS@ | ||
62 | modules_ecore_evas_engines_extn_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 48 | modules_ecore_evas_engines_extn_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
63 | modules_ecore_evas_engines_extn_module_la_LIBTOOLFLAGS = --tag=disable-static | 49 | modules_ecore_evas_engines_extn_module_la_LIBTOOLFLAGS = --tag=disable-static |
64 | endif | 50 | endif |
@@ -69,14 +55,16 @@ ecoreevasenginexpkgdir = $(libdir)/ecore_evas/engines/x/$(MODULE_ARCH) | |||
69 | ecoreevasenginexpkg_LTLIBRARIES = modules/ecore_evas/engines/x/module.la | 55 | ecoreevasenginexpkg_LTLIBRARIES = modules/ecore_evas/engines/x/module.la |
70 | modules_ecore_evas_engines_x_module_la_SOURCES = $(XSOURCES) | 56 | modules_ecore_evas_engines_x_module_la_SOURCES = $(XSOURCES) |
71 | modules_ecore_evas_engines_x_module_la_CPPFLAGS = \ | 57 | modules_ecore_evas_engines_x_module_la_CPPFLAGS = \ |
72 | $(lib_ecore_evas_libecore_evas_la_CPPFLAGS) \ | 58 | @ECORE_EVAS_CFLAGS@ \ |
73 | -I$(top_srcdir)/src/lib/ecore_x \ | 59 | @ECORE_X_CFLAGS@ \ |
74 | -I$(top_builddir)/src/lib/ecore_x \ | ||
75 | -I$(top_srcdir)/src/modules/evas/engines/software_x11 \ | 60 | -I$(top_srcdir)/src/modules/evas/engines/software_x11 \ |
76 | -I$(top_srcdir)/src/modules/evas/engines/gl_x11 | 61 | -I$(top_srcdir)/src/modules/evas/engines/gl_x11 |
77 | modules_ecore_evas_engines_x_module_la_LIBADD = \ | 62 | modules_ecore_evas_engines_x_module_la_LIBADD = \ |
78 | lib/ecore_evas/libecore_evas.la \ | 63 | @USE_ECORE_EVAS_LIBS@ \ |
79 | lib/ecore_x/libecore_x.la | 64 | @USE_ECORE_X_LIBS@ |
65 | modules_ecore_evas_engines_x_module_la_DEPENDENCIES = \ | ||
66 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
67 | @USE_ECORE_X_INTERNAL_LIBS@ | ||
80 | modules_ecore_evas_engines_x_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 68 | modules_ecore_evas_engines_x_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
81 | modules_ecore_evas_engines_x_module_la_LIBTOOLFLAGS = --tag=disable-static | 69 | modules_ecore_evas_engines_x_module_la_LIBTOOLFLAGS = --tag=disable-static |
82 | endif | 70 | endif |
@@ -87,12 +75,15 @@ ecoreevasenginecocoapkgdir = $(libdir)/ecore_evas/engines/cocoa/$(MODULE_ARCH) | |||
87 | ecoreevasenginecocoapkg_LTLIBRARIES = modules/ecore_evas/engines/cocoa/module.la | 75 | ecoreevasenginecocoapkg_LTLIBRARIES = modules/ecore_evas/engines/cocoa/module.la |
88 | modules_ecore_evas_engines_cocoa_module_la_SOURCES = $(COCOASOURCES) | 76 | modules_ecore_evas_engines_cocoa_module_la_SOURCES = $(COCOASOURCES) |
89 | modules_ecore_evas_engines_cocoa_module_la_CPPFLAGS = \ | 77 | modules_ecore_evas_engines_cocoa_module_la_CPPFLAGS = \ |
90 | $(lib_ecore_evas_libecore_evas_la_CPPFLAGS) \ | 78 | @ECORE_EVAS_CFLAGS@ \ |
91 | -I$(top_srcdir)/src/lib/ecore_cocoa \ | 79 | @ECORE_COCOA_CFLAGS@ \ |
92 | -I$(top_srcdir)/src/modules/evas/engines/gl_cocoa | 80 | -I$(top_srcdir)/src/modules/evas/engines/gl_cocoa |
93 | modules_ecore_evas_engines_cocoa_module_la_LIBADD = \ | 81 | modules_ecore_evas_engines_cocoa_module_la_LIBADD = \ |
94 | lib/ecore_evas/libecore_evas.la \ | 82 | @USE_ECORE_EVAS_LIBS@ \ |
95 | lib/ecore_cocoa/libecore_cocoa.la | 83 | @USE_ECORE_COCOA_LIBS@ |
84 | modules_ecore_evas_engines_cocoa_module_la_DEPENDENCIES = \ | ||
85 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
86 | @USE_ECORE_COCOA_INTERNAL_LIBS@ | ||
96 | modules_ecore_evas_engines_cocoa_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 87 | modules_ecore_evas_engines_cocoa_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
97 | modules_ecore_evas_engines_cocoa_module_la_LIBTOOLFLAGS = --tag=disable-static | 88 | modules_ecore_evas_engines_cocoa_module_la_LIBTOOLFLAGS = --tag=disable-static |
98 | endif | 89 | endif |
@@ -103,12 +94,15 @@ ecoreevasenginefbpkgdir = $(libdir)/ecore_evas/engines/fb/$(MODULE_ARCH) | |||
103 | ecoreevasenginefbpkg_LTLIBRARIES = modules/ecore_evas/engines/fb/module.la | 94 | ecoreevasenginefbpkg_LTLIBRARIES = modules/ecore_evas/engines/fb/module.la |
104 | modules_ecore_evas_engines_fb_module_la_SOURCES = $(FBSOURCES) | 95 | modules_ecore_evas_engines_fb_module_la_SOURCES = $(FBSOURCES) |
105 | modules_ecore_evas_engines_fb_module_la_CPPFLAGS = \ | 96 | modules_ecore_evas_engines_fb_module_la_CPPFLAGS = \ |
106 | $(lib_ecore_evas_libecore_evas_la_CPPFLAGS) \ | 97 | @ECORE_EVAS_CFLAGS@ \ |
107 | -I$(top_srcdir)/src/lib/ecore_fb \ | 98 | @ECORE_FB_CFLAGS@ \ |
108 | -I$(top_srcdir)/src/modules/evas/engines/fb | 99 | -I$(top_srcdir)/src/modules/evas/engines/fb |
109 | modules_ecore_evas_engines_fb_module_la_LIBADD = \ | 100 | modules_ecore_evas_engines_fb_module_la_LIBADD = \ |
110 | lib/ecore_evas/libecore_evas.la \ | 101 | @USE_ECORE_EVAS_LIBS@ \ |
111 | lib/ecore_fb/libecore_fb.la | 102 | @USE_ECORE_FB_LIBS@ |
103 | modules_ecore_evas_engines_fb_module_la_DEPENDENCIES = \ | ||
104 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
105 | @USE_ECORE_FB_INTERNAL_LIBS@ | ||
112 | modules_ecore_evas_engines_fb_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 106 | modules_ecore_evas_engines_fb_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
113 | modules_ecore_evas_engines_fb_module_la_LIBTOOLFLAGS = --tag=disable-static | 107 | modules_ecore_evas_engines_fb_module_la_LIBTOOLFLAGS = --tag=disable-static |
114 | endif | 108 | endif |
@@ -119,12 +113,15 @@ ecoreevasenginepsl1ghtpkgdir = $(libdir)/ecore_evas/engines/psl1ght/$(MODULE_ARC | |||
119 | ecoreevasenginepsl1ghtpkg_LTLIBRARIES = modules/ecore_evas/engines/psl1ght/module.la | 113 | ecoreevasenginepsl1ghtpkg_LTLIBRARIES = modules/ecore_evas/engines/psl1ght/module.la |
120 | modules_ecore_evas_engines_psl1ght_module_la_SOURCES = $(PSL1GHTSOURCES) | 114 | modules_ecore_evas_engines_psl1ght_module_la_SOURCES = $(PSL1GHTSOURCES) |
121 | modules_ecore_evas_engines_psl1ght_module_la_CPPFLAGS = \ | 115 | modules_ecore_evas_engines_psl1ght_module_la_CPPFLAGS = \ |
122 | $(lib_ecore_evas_libecore_evas_la_CPPFLAGS) \ | 116 | @ECORE_EVAS_CFLAGS@ \ |
123 | -I$(top_srcdir)/src/lib/ecore_psl1ght \ | 117 | @ECORE_PSL1GHT_CFLAGS@ \ |
124 | -I$(top_srcdir)/src/modules/evas/engines/psl1ght | 118 | -I$(top_srcdir)/src/modules/evas/engines/psl1ght |
125 | modules_ecore_evas_engines_psl1ght_module_la_LIBADD = \ | 119 | modules_ecore_evas_engines_psl1ght_module_la_LIBADD = \ |
126 | lib/ecore_evas/libecore_evas.la \ | 120 | @USE_ECORE_EVAS_LIBS@ \ |
127 | lib/ecore_psl1ght/libecore_psl1ght.la | 121 | @USE_ECORE_PSL1GHT_LIBS@ |
122 | modules_ecore_evas_engines_psl1ght_module_la_DEPENDENCIES = \ | ||
123 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
124 | @USE_ECORE_PSL1GHT_INTERNAL_LIBS@ | ||
128 | modules_ecore_evas_engines_psl1ght_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 125 | modules_ecore_evas_engines_psl1ght_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
129 | modules_ecore_evas_engines_psl1ght_module_la_LIBTOOLFLAGS = --tag=disable-static | 126 | modules_ecore_evas_engines_psl1ght_module_la_LIBTOOLFLAGS = --tag=disable-static |
130 | endif | 127 | endif |
@@ -139,14 +136,17 @@ ecoreevasenginewaylandpkgdir = $(libdir)/ecore_evas/engines/wayland/$(MODULE_ARC | |||
139 | ecoreevasenginewaylandpkg_LTLIBRARIES = modules/ecore_evas/engines/wayland/module.la | 136 | ecoreevasenginewaylandpkg_LTLIBRARIES = modules/ecore_evas/engines/wayland/module.la |
140 | modules_ecore_evas_engines_wayland_module_la_SOURCES = $(WAYLANDSOURCES) | 137 | modules_ecore_evas_engines_wayland_module_la_SOURCES = $(WAYLANDSOURCES) |
141 | modules_ecore_evas_engines_wayland_module_la_CPPFLAGS = \ | 138 | modules_ecore_evas_engines_wayland_module_la_CPPFLAGS = \ |
142 | $(lib_ecore_evas_libecore_evas_la_CPPFLAGS) \ | 139 | @ECORE_EVAS_CFLAGS@ \ |
143 | -I$(top_srcdir)/src/lib/ecore_wayland \ | 140 | @ECORE_WAYLAND_CFLAGS@ \ |
144 | -I$(top_srcdir)/src/modules/evas/engines/wayland_shm \ | 141 | -I$(top_srcdir)/src/modules/evas/engines/wayland_shm \ |
145 | -I$(top_srcdir)/src/modules/evas/engines/wayland_egl \ | 142 | -I$(top_srcdir)/src/modules/evas/engines/wayland_egl \ |
146 | @ECORE_WAYLAND_CFLAGS@ | 143 | @ECORE_WAYLAND_CFLAGS@ |
147 | modules_ecore_evas_engines_wayland_module_la_LIBADD = \ | 144 | modules_ecore_evas_engines_wayland_module_la_LIBADD = \ |
148 | lib/ecore_evas/libecore_evas.la \ | 145 | @USE_ECORE_EVAS_LIBS@ \ |
149 | lib/ecore_wayland/libecore_wayland.la | 146 | @USE_ECORE_WAYLAND_LIBS@ |
147 | modules_ecore_evas_engines_wayland_module_la_DEPENDENCIES = \ | ||
148 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
149 | @USE_ECORE_WAYLAND_INTERNAL_LIBS@ | ||
150 | modules_ecore_evas_engines_wayland_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 150 | modules_ecore_evas_engines_wayland_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
151 | modules_ecore_evas_engines_wayland_module_la_LIBTOOLFLAGS = --tag=disable-static | 151 | modules_ecore_evas_engines_wayland_module_la_LIBTOOLFLAGS = --tag=disable-static |
152 | endif | 152 | endif |
@@ -158,12 +158,15 @@ ecoreevasenginesdlpkgdir = $(libdir)/ecore_evas/engines/sdl/$(MODULE_ARCH) | |||
158 | ecoreevasenginesdlpkg_LTLIBRARIES = modules/ecore_evas/engines/sdl/module.la | 158 | ecoreevasenginesdlpkg_LTLIBRARIES = modules/ecore_evas/engines/sdl/module.la |
159 | modules_ecore_evas_engines_sdl_module_la_SOURCES = $(SDLSOURCES) | 159 | modules_ecore_evas_engines_sdl_module_la_SOURCES = $(SDLSOURCES) |
160 | modules_ecore_evas_engines_sdl_module_la_CPPFLAGS = \ | 160 | modules_ecore_evas_engines_sdl_module_la_CPPFLAGS = \ |
161 | $(lib_ecore_evas_libecore_evas_la_CPPFLAGS) \ | 161 | @ECORE_EVAS_CFLAGS@ \ |
162 | -I$(top_srcdir)/src/lib/ecore_sdl \ | 162 | @ECORE_SDL_CFLAGS@ \ |
163 | -I$(top_srcdir)/src/modules/evas/engines/gl_sdl | 163 | -I$(top_srcdir)/src/modules/evas/engines/gl_sdl |
164 | modules_ecore_evas_engines_sdl_module_la_LIBADD = \ | 164 | modules_ecore_evas_engines_sdl_module_la_LIBADD = \ |
165 | lib/ecore_evas/libecore_evas.la \ | 165 | @USE_ECORE_EVAS_LIBS@ \ |
166 | lib/ecore_sdl/libecore_sdl.la | 166 | @USE_ECORE_SDL_LIBS@ |
167 | modules_ecore_evas_engines_sdl_module_la_DEPENDENCIES = \ | ||
168 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
169 | @USE_ECORE_SDL_INTERNAL_LIBS@ | ||
167 | modules_ecore_evas_engines_sdl_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 170 | modules_ecore_evas_engines_sdl_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
168 | modules_ecore_evas_engines_sdl_module_la_LIBTOOLFLAGS = --tag=disable-static | 171 | modules_ecore_evas_engines_sdl_module_la_LIBTOOLFLAGS = --tag=disable-static |
169 | endif | 172 | endif |
@@ -175,13 +178,16 @@ ecoreevasengineswin32pkgdir = $(libdir)/ecore_evas/engines/win32/$(MODULE_ARCH) | |||
175 | ecoreevasengineswin32pkg_LTLIBRARIES = modules/ecore_evas/engines/win32/module.la | 178 | ecoreevasengineswin32pkg_LTLIBRARIES = modules/ecore_evas/engines/win32/module.la |
176 | modules_ecore_evas_engines_win32_module_la_SOURCES = $(WIN32SOURCES) | 179 | modules_ecore_evas_engines_win32_module_la_SOURCES = $(WIN32SOURCES) |
177 | modules_ecore_evas_engines_win32_module_la_CPPFLAGS = \ | 180 | modules_ecore_evas_engines_win32_module_la_CPPFLAGS = \ |
178 | $(lib_ecore_evas_libecore_evas_la_CPPFLAGS) \ | 181 | @ECORE_EVAS_CFLAGS@ \ |
179 | -I$(top_srcdir)/src/lib/ecore_win32 \ | 182 | @ECORE_WIN32_CFLAGS@ \ |
180 | -I$(top_srcdir)/src/modules/evas/engines/software_ddraw \ | 183 | -I$(top_srcdir)/src/modules/evas/engines/software_ddraw \ |
181 | -I$(top_srcdir)/src/modules/evas/engines/software_gdi | 184 | -I$(top_srcdir)/src/modules/evas/engines/software_gdi |
182 | modules_ecore_evas_engines_win32_module_la_LIBADD = \ | 185 | modules_ecore_evas_engines_win32_module_la_LIBADD = \ |
183 | lib/ecore/libecore_evas.la \ | 186 | @USE_ECORE_EVAS_LIBS@ \ |
184 | lib/ecore_win32/libecore_win32.la | 187 | @USE_ECORE_WIN32_LIBS@ |
188 | modules_ecore_evas_engines_win32_module_la_DEPENDENCIES = \ | ||
189 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
190 | @USE_ECORE_WIN32_INTERNAL_LIBS@ | ||
185 | modules_ecore_evas_engines_win32_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 191 | modules_ecore_evas_engines_win32_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
186 | modules_ecore_evas_engines_win32_module_la_LIBTOOLFLAGS = --tag=disable-static | 192 | modules_ecore_evas_engines_win32_module_la_LIBTOOLFLAGS = --tag=disable-static |
187 | endif | 193 | endif |
diff --git a/src/Makefile_Ecore_FB.am b/src/Makefile_Ecore_FB.am index 4c84b2e96f..7f40863d87 100644 --- a/src/Makefile_Ecore_FB.am +++ b/src/Makefile_Ecore_FB.am | |||
@@ -16,22 +16,8 @@ lib/ecore_fb/ecore_fb_vt.c \ | |||
16 | lib/ecore_fb/ecore_fb_keytable.h \ | 16 | lib/ecore_fb/ecore_fb_keytable.h \ |
17 | lib/ecore_fb/ecore_fb_private.h | 17 | lib/ecore_fb/ecore_fb_private.h |
18 | 18 | ||
19 | lib_ecore_fb_libecore_fb_la_CPPFLAGS = \ | 19 | lib_ecore_fb_libecore_fb_la_CPPFLAGS = @ECORE_FB_CFLAGS@ |
20 | -I$(top_srcdir)/src/lib/eina \ | 20 | lib_ecore_fb_libecore_fb_la_LIBADD = @ECORE_FB_LIBS@ |
21 | -I$(top_builddir)/src/lib/eina \ | 21 | lib_ecore_fb_libecore_fb_la_DEPENDENCIES = @ECORE_FB_INTERNAL_LIBS@ |
22 | -I$(top_srcdir)/src/lib/eo \ | ||
23 | -I$(top_srcdir)/src/lib/ecore \ | ||
24 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
25 | -I$(top_srcdir)/src/lib/ecore_fb \ | ||
26 | @EFL_COV_CFLAGS@ \ | ||
27 | @ECORE_FB_CFLAGS@ | ||
28 | |||
29 | lib_ecore_fb_libecore_fb_la_LIBADD = \ | ||
30 | lib/ecore_input/libecore_input.la \ | ||
31 | lib/ecore/libecore.la \ | ||
32 | lib/eo/libeo.la \ | ||
33 | lib/eina/libeina.la \ | ||
34 | @ECORE_FB_LIBS@ | ||
35 | |||
36 | lib_ecore_fb_libecore_fb_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 22 | lib_ecore_fb_libecore_fb_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
37 | endif | 23 | endif |
diff --git a/src/Makefile_Ecore_File.am b/src/Makefile_Ecore_File.am index 8dfa6f320a..27dbe33b91 100644 --- a/src/Makefile_Ecore_File.am +++ b/src/Makefile_Ecore_File.am | |||
@@ -27,21 +27,7 @@ lib/ecore_file/ecore_file_monitor_poll.c | |||
27 | endif | 27 | endif |
28 | endif | 28 | endif |
29 | 29 | ||
30 | lib_ecore_file_libecore_file_la_CPPFLAGS = \ | 30 | lib_ecore_file_libecore_file_la_CPPFLAGS = @ECORE_FILE_CFLAGS@ |
31 | -I$(top_srcdir)/src/lib/eina \ | 31 | lib_ecore_file_libecore_file_la_LIBADD = @ECORE_FILE_LIBS@ |
32 | -I$(top_builddir)/src/lib/eina \ | 32 | lib_ecore_file_libecore_file_la_DEPENDENCIES = @ECORE_FILE_INTERNAL_LIBS@ |
33 | -I$(top_srcdir)/src/lib/eo \ | ||
34 | -I$(top_srcdir)/src/lib/ecore \ | ||
35 | -I$(top_srcdir)/src/lib/ecore_con \ | ||
36 | -I$(top_srcdir)/src/lib/ecore_file \ | ||
37 | -DEFL_ECORE_FILE_BUILD \ | ||
38 | @ECORE_FILE_CFLAGS@ \ | ||
39 | @EFL_COV_CFLAGS@ | ||
40 | |||
41 | lib_ecore_file_libecore_file_la_LIBADD = \ | ||
42 | lib/ecore_con/libecore_con.la \ | ||
43 | lib/ecore/libecore.la \ | ||
44 | lib/eo/libeo.la \ | ||
45 | lib/eina/libeina.la \ | ||
46 | @EFL_COV_LIBS@ | ||
47 | lib_ecore_file_libecore_file_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 33 | lib_ecore_file_libecore_file_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
diff --git a/src/Makefile_Ecore_Imf.am b/src/Makefile_Ecore_Imf.am index aaf5957c5e..e410f00521 100644 --- a/src/Makefile_Ecore_Imf.am +++ b/src/Makefile_Ecore_Imf.am | |||
@@ -16,54 +16,23 @@ lib/ecore_imf/ecore_imf_module.c \ | |||
16 | lib/ecore_imf/ecore_imf_private.h | 16 | lib/ecore_imf/ecore_imf_private.h |
17 | 17 | ||
18 | lib_ecore_imf_libecore_imf_la_CPPFLAGS = \ | 18 | lib_ecore_imf_libecore_imf_la_CPPFLAGS = \ |
19 | -I$(top_srcdir)/src/lib/eina \ | ||
20 | -I$(top_builddir)/src/lib/eina \ | ||
21 | -I$(top_srcdir)/src/lib/eo \ | ||
22 | -I$(top_srcdir)/src/lib/ecore \ | ||
23 | -I$(top_srcdir)/src/lib/ecore_imf \ | ||
24 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 19 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
25 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 20 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
26 | -DPACKAGE_DATA_DIR=\"$(datadir)/ecore_imf\" \ | 21 | -DPACKAGE_DATA_DIR=\"$(datadir)/ecore_imf\" \ |
27 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ | 22 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
28 | -DEFL_ECORE_IMF_BUILD \ | 23 | @ECORE_IMF_CFLAGS@ |
29 | @ECORE_IMF_CFLAGS@ \ | 24 | lib_ecore_imf_libecore_imf_la_LIBADD = @ECORE_IMF_LIBS@ |
30 | @EFL_COV_CFLAGS@ | 25 | lib_ecore_imf_libecore_imf_la_DEPENDENCIES = @ECORE_IMF_INTERNAL_LIBS@ |
31 | |||
32 | lib_ecore_imf_libecore_imf_la_LIBADD = \ | ||
33 | lib/ecore/libecore.la \ | ||
34 | lib/eo/libeo.la \ | ||
35 | lib/eina/libeina.la \ | ||
36 | @EFL_COV_LIBS@ | ||
37 | |||
38 | lib_ecore_imf_libecore_imf_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 26 | lib_ecore_imf_libecore_imf_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
39 | 27 | ||
40 | installed_ecoreimfevasmainheadersdir = $(includedir)/ecore-@VMAJ@ | 28 | installed_ecoreimfevasmainheadersdir = $(includedir)/ecore-@VMAJ@ |
41 | dist_installed_ecoreimfevasmainheaders_DATA = \ | 29 | dist_installed_ecoreimfevasmainheaders_DATA = \ |
42 | lib/ecore_imf/Ecore_IMF_Evas.h | 30 | lib/ecore_imf/Ecore_IMF_Evas.h |
43 | 31 | ||
44 | lib_ecore_imf_libecore_imf_evas_la_SOURCES = \ | 32 | lib_ecore_imf_libecore_imf_evas_la_SOURCES = lib/ecore_imf/ecore_imf_evas.c |
45 | lib/ecore_imf/ecore_imf_evas.c | 33 | lib_ecore_imf_libecore_imf_evas_la_CPPFLAGS = @ECORE_IMF_EVAS_CFLAGS@ |
46 | 34 | lib_ecore_imf_libecore_imf_evas_la_LIBADD = @ECORE_IMF_EVAS_LIBS@ | |
47 | lib_ecore_imf_libecore_imf_evas_la_CPPFLAGS = \ | 35 | lib_ecore_imf_libecore_imf_evas_la_DEPENDENCIES = @ECORE_IMF_EVAS_INTERNAL_LIBS@ |
48 | -I$(top_srcdir)/src/lib/eina \ | ||
49 | -I$(top_builddir)/src/lib/eina \ | ||
50 | -I$(top_srcdir)/src/lib/eo \ | ||
51 | -I$(top_srcdir)/src/lib/evas \ | ||
52 | -I$(top_srcdir)/src/lib/ecore \ | ||
53 | -I$(top_srcdir)/src/lib/ecore_imf \ | ||
54 | -I$(top_srcdir)/src/lib/ecore_imf_evas \ | ||
55 | -DEFL_ECORE_IMF_EVAS_BUILD \ | ||
56 | @ECORE_IMF_EVAS_CFLAGS@ \ | ||
57 | @EFL_COV_CFLAGS@ | ||
58 | |||
59 | lib_ecore_imf_libecore_imf_evas_la_LIBADD = \ | ||
60 | lib/ecore_imf/libecore_imf.la \ | ||
61 | lib/ecore/libecore.la \ | ||
62 | lib/evas/libevas.la \ | ||
63 | lib/eo/libeo.la \ | ||
64 | lib/eina/libeina.la \ | ||
65 | @EFL_COV_LIBS@ | ||
66 | |||
67 | lib_ecore_imf_libecore_imf_evas_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 36 | lib_ecore_imf_libecore_imf_evas_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
68 | 37 | ||
69 | 38 | ||
@@ -79,28 +48,12 @@ modules/ecore_imf/ibus/ibus_module.c \ | |||
79 | modules/ecore_imf/ibus/ibus_imcontext.c \ | 48 | modules/ecore_imf/ibus/ibus_imcontext.c \ |
80 | modules/ecore_imf/ibus/ibus_imcontext.h | 49 | modules/ecore_imf/ibus/ibus_imcontext.h |
81 | modules_ecore_imf_ibus_module_la_CPPFLAGS = \ | 50 | modules_ecore_imf_ibus_module_la_CPPFLAGS = \ |
82 | -I$(top_srcdir)/src/lib/eina \ | ||
83 | -I$(top_builddir)/src/lib/eina \ | ||
84 | -I$(top_srcdir)/src/lib/eo \ | ||
85 | -I$(top_srcdir)/src/lib/ecore \ | ||
86 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
87 | -I$(top_srcdir)/src/lib/ecore_x \ | ||
88 | -I$(top_builddir)/src/lib/ecore_x \ | ||
89 | -I$(top_srcdir)/src/lib/ecore_imf \ | ||
90 | -I$(top_srcdir)/src/lib/ecore_evas \ | ||
91 | -I$(top_srcdir)/src/lib/evas \ | ||
92 | @ECORE_IMF_CFLAGS@ \ | 51 | @ECORE_IMF_CFLAGS@ \ |
93 | @EFL_COV_CFLAGS@ \ | ||
94 | @IBUS_CFLAGS@ | 52 | @IBUS_CFLAGS@ |
95 | modules_ecore_imf_ibus_module_la_LIBADD = \ | 53 | modules_ecore_imf_ibus_module_la_LIBADD = \ |
96 | lib/ecore_evas/libecore_evas.la \ | 54 | @USE_ECORE_IMF_LIBS@ \ |
97 | lib/ecore_imf/libecore_imf.la \ | 55 | @IBUS_LIBS@ |
98 | lib/ecore_x/libecore_x.la \ | 56 | modules_ecore_imf_ibus_module_la_DEPENDENCIES = @USE_ECORE_IMF_INTERNAL_LIBS@ |
99 | lib/ecore/libecore.la \ | ||
100 | lib/eo/libeo.la \ | ||
101 | lib/eina/libeina.la \ | ||
102 | @IBUS_LIBS@ \ | ||
103 | @EFL_COV_LIBS@ | ||
104 | modules_ecore_imf_ibus_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 57 | modules_ecore_imf_ibus_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
105 | modules_ecore_imf_ibus_module_la_LIBTOOLFLAGS = --tag=disable-static | 58 | modules_ecore_imf_ibus_module_la_LIBTOOLFLAGS = --tag=disable-static |
106 | endif | 59 | endif |
@@ -115,28 +68,12 @@ modules/ecore_imf/scim/scim_module.cpp \ | |||
115 | modules/ecore_imf/scim/scim_imcontext.cpp \ | 68 | modules/ecore_imf/scim/scim_imcontext.cpp \ |
116 | modules/ecore_imf/scim/scim_imcontext.h | 69 | modules/ecore_imf/scim/scim_imcontext.h |
117 | modules_ecore_imf_scim_module_la_CPPFLAGS = \ | 70 | modules_ecore_imf_scim_module_la_CPPFLAGS = \ |
118 | -I$(top_srcdir)/src/lib/eina \ | ||
119 | -I$(top_builddir)/src/lib/eina \ | ||
120 | -I$(top_srcdir)/src/lib/eo \ | ||
121 | -I$(top_srcdir)/src/lib/ecore \ | ||
122 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
123 | -I$(top_srcdir)/src/lib/ecore_x \ | ||
124 | -I$(top_builddir)/src/lib/ecore_x \ | ||
125 | -I$(top_srcdir)/src/lib/ecore_imf \ | ||
126 | -I$(top_srcdir)/src/lib/ecore_evas \ | ||
127 | -I$(top_srcdir)/src/lib/evas \ | ||
128 | @ECORE_IMF_CFLAGS@ \ | 71 | @ECORE_IMF_CFLAGS@ \ |
129 | @EFL_COV_CFLAGS@ \ | ||
130 | @SCIM_CFLAGS@ | 72 | @SCIM_CFLAGS@ |
131 | modules_ecore_imf_scim_module_la_LIBADD = \ | 73 | modules_ecore_imf_scim_module_la_LIBADD = \ |
132 | lib/ecore_evas/libecore_evas.la \ | 74 | @USE_ECORE_IMF_LIBS@ \ |
133 | lib/ecore_imf/libecore_imf.la \ | 75 | @SCIM_LIBS@ |
134 | lib/ecore_x/libecore_x.la \ | 76 | modules_ecore_imf_scim_module_la_DEPENDENCIES = @USE_ECORE_IMF_INTERNAL_LIBS@ |
135 | lib/ecore/libecore.la \ | ||
136 | lib/eo/libeo.la \ | ||
137 | lib/eina/libeina.la \ | ||
138 | @SCIM_LIBS@ \ | ||
139 | @EFL_COV_LIBS@ | ||
140 | modules_ecore_imf_scim_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 77 | modules_ecore_imf_scim_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
141 | modules_ecore_imf_scim_module_la_LIBTOOLFLAGS = --tag=disable-static | 78 | modules_ecore_imf_scim_module_la_LIBTOOLFLAGS = --tag=disable-static |
142 | endif | 79 | endif |
@@ -149,25 +86,16 @@ ecoreimfximpkg_LTLIBRARIES = modules/ecore_imf/xim/module.la | |||
149 | modules_ecore_imf_xim_module_la_SOURCES = \ | 86 | modules_ecore_imf_xim_module_la_SOURCES = \ |
150 | modules/ecore_imf/xim/ecore_imf_xim.c | 87 | modules/ecore_imf/xim/ecore_imf_xim.c |
151 | modules_ecore_imf_xim_module_la_CPPFLAGS = \ | 88 | modules_ecore_imf_xim_module_la_CPPFLAGS = \ |
152 | -I$(top_srcdir)/src/lib/eina \ | ||
153 | -I$(top_builddir)/src/lib/eina \ | ||
154 | -I$(top_srcdir)/src/lib/eo \ | ||
155 | -I$(top_srcdir)/src/lib/ecore \ | ||
156 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
157 | -I$(top_srcdir)/src/lib/ecore_x \ | ||
158 | -I$(top_builddir)/src/lib/ecore_x \ | ||
159 | -I$(top_srcdir)/src/lib/ecore_imf \ | ||
160 | @ECORE_IMF_CFLAGS@ \ | 89 | @ECORE_IMF_CFLAGS@ \ |
161 | @ecore_imf_xim_cflags@ \ | 90 | @ECORE_X_CFLAGS@ \ |
162 | @EFL_COV_CFLAGS@ | 91 | @ecore_imf_xim_cflags@ |
163 | modules_ecore_imf_xim_module_la_LIBADD = \ | 92 | modules_ecore_imf_xim_module_la_LIBADD = \ |
164 | lib/ecore_imf/libecore_imf.la \ | 93 | @USE_ECORE_IMF_LIBS@ \ |
165 | lib/ecore_x/libecore_x.la \ | 94 | @USE_ECORE_X_LIBS@ \ |
166 | lib/ecore/libecore.la \ | 95 | @ecore_imf_xim_libs@ |
167 | lib/eo/libeo.la \ | 96 | modules_ecore_imf_xim_module_la_DEPENDENCIES = \ |
168 | lib/eina/libeina.la \ | 97 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ |
169 | @ecore_imf_xim_libs@ \ | 98 | @USE_ECORE_X_INTERNAL_LIBS@ |
170 | @EFL_COV_LIBS@ | ||
171 | modules_ecore_imf_xim_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 99 | modules_ecore_imf_xim_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
172 | modules_ecore_imf_xim_module_la_LIBTOOLFLAGS = --tag=disable-static | 100 | modules_ecore_imf_xim_module_la_LIBTOOLFLAGS = --tag=disable-static |
173 | endif | 101 | endif |
diff --git a/src/Makefile_Ecore_Input.am b/src/Makefile_Ecore_Input.am index 765616aa09..d07a895d5a 100644 --- a/src/Makefile_Ecore_Input.am +++ b/src/Makefile_Ecore_Input.am | |||
@@ -15,23 +15,9 @@ lib/ecore_input/ecore_input_compose.c \ | |||
15 | lib/ecore_input/ecore_input_compose.h \ | 15 | lib/ecore_input/ecore_input_compose.h \ |
16 | lib/ecore_input/ecore_input_private.h | 16 | lib/ecore_input/ecore_input_private.h |
17 | 17 | ||
18 | lib_ecore_input_libecore_input_la_CPPFLAGS = \ | 18 | lib_ecore_input_libecore_input_la_CPPFLAGS = @ECORE_INPUT_CFLAGS@ |
19 | -I$(top_srcdir)/src/lib/eina \ | 19 | lib_ecore_input_libecore_input_la_LIBADD = @ECORE_INPUT_LIBS@ |
20 | -I$(top_builddir)/src/lib/eina \ | 20 | lib_ecore_input_libecore_input_la_DEPENDENCIES = @ECORE_INPUT_INTERNAL_LIBS@ |
21 | -I$(top_srcdir)/src/lib/eo \ | ||
22 | -I$(top_srcdir)/src/lib/ecore \ | ||
23 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
24 | -DEFL_ECORE_INPUT_BUILD \ | ||
25 | @ECORE_INPUT_CFLAGS@ \ | ||
26 | @EFL_COV_CFLAGS@ | ||
27 | |||
28 | lib_ecore_input_libecore_input_la_LIBADD = \ | ||
29 | lib/ecore/libecore.la \ | ||
30 | lib/eo/libeo.la \ | ||
31 | lib/eina/libeina.la \ | ||
32 | @EFL_COV_LIBS@ | ||
33 | |||
34 | lib_ecore_input_libecore_input_la_LIBADD += @EFL_COV_LIBS@ | ||
35 | lib_ecore_input_libecore_input_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 21 | lib_ecore_input_libecore_input_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
36 | 22 | ||
37 | installed_ecoreinputevasmainheadersdir = $(includedir)/ecore-@VMAJ@ | 23 | installed_ecoreinputevasmainheadersdir = $(includedir)/ecore-@VMAJ@ |
@@ -42,24 +28,7 @@ lib_ecore_input_libecore_input_evas_la_SOURCES = \ | |||
42 | lib/ecore_input/ecore_input_evas.c \ | 28 | lib/ecore_input/ecore_input_evas.c \ |
43 | lib/ecore_input/ecore_input_evas_private.h | 29 | lib/ecore_input/ecore_input_evas_private.h |
44 | 30 | ||
45 | lib_ecore_input_libecore_input_evas_la_CPPFLAGS = \ | 31 | lib_ecore_input_libecore_input_evas_la_CPPFLAGS = @ECORE_INPUT_EVAS_CFLAGS@ |
46 | -I$(top_srcdir)/src/lib/eina \ | 32 | lib_ecore_input_libecore_input_evas_la_LIBADD = @ECORE_INPUT_EVAS_LIBS@ |
47 | -I$(top_builddir)/src/lib/eina \ | 33 | lib_ecore_input_libecore_input_evas_la_DEPENDENCIES = @ECORE_INPUT_EVAS_INTERNAL_LIBS@ |
48 | -I$(top_srcdir)/src/lib/eo \ | ||
49 | -I$(top_srcdir)/src/lib/evas \ | ||
50 | -I$(top_srcdir)/src/lib/ecore \ | ||
51 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
52 | -I$(top_srcdir)/src/lib/ecore_input_evas \ | ||
53 | -DEFL_ECORE_INPUT_EVAS_BUILD \ | ||
54 | @ECORE_INPUT_EVAS_CFLAGS@ \ | ||
55 | @EFL_COV_CFLAGS@ | ||
56 | |||
57 | lib_ecore_input_libecore_input_evas_la_LIBADD = \ | ||
58 | lib/ecore_input/libecore_input.la \ | ||
59 | lib/ecore/libecore.la \ | ||
60 | lib/evas/libevas.la \ | ||
61 | lib/eo/libeo.la \ | ||
62 | lib/eina/libeina.la \ | ||
63 | @EFL_COV_LIBS@ | ||
64 | |||
65 | lib_ecore_input_libecore_input_evas_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 34 | lib_ecore_input_libecore_input_evas_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
diff --git a/src/Makefile_Ecore_Ipc.am b/src/Makefile_Ecore_Ipc.am index 13a7efb045..ca490759b9 100644 --- a/src/Makefile_Ecore_Ipc.am +++ b/src/Makefile_Ecore_Ipc.am | |||
@@ -11,23 +11,7 @@ lib_ecore_ipc_libecore_ipc_la_SOURCES = \ | |||
11 | lib/ecore_ipc/ecore_ipc.c \ | 11 | lib/ecore_ipc/ecore_ipc.c \ |
12 | lib/ecore_ipc/ecore_ipc_private.h | 12 | lib/ecore_ipc/ecore_ipc_private.h |
13 | 13 | ||
14 | lib_ecore_ipc_libecore_ipc_la_CPPFLAGS = \ | 14 | lib_ecore_ipc_libecore_ipc_la_CPPFLAGS = @ECORE_IPC_CFLAGS@ |
15 | -I$(top_srcdir)/src/lib/eina \ | 15 | lib_ecore_ipc_libecore_ipc_la_LIBADD = @ECORE_IPC_LIBS@ |
16 | -I$(top_builddir)/src/lib/eina \ | 16 | lib_ecore_ipc_libecore_ipc_la_DEPENDENCIES = @ECORE_IPC_INTERNAL_LIBS@ |
17 | -I$(top_srcdir)/src/lib/eo \ | ||
18 | -I$(top_srcdir)/src/lib/ecore \ | ||
19 | -I$(top_srcdir)/src/lib/ecore_con \ | ||
20 | -I$(top_srcdir)/src/lib/ecore_ipc \ | ||
21 | -DEFL_ECORE_IPC_BUILD \ | ||
22 | @EFL_COV_CFLAGS@ \ | ||
23 | @ECORE_IPC_CFLAGS@ | ||
24 | |||
25 | lib_ecore_ipc_libecore_ipc_la_LIBADD = \ | ||
26 | lib/ecore_con/libecore_con.la \ | ||
27 | lib/ecore/libecore.la \ | ||
28 | lib/eo/libeo.la \ | ||
29 | lib/eina/libeina.la \ | ||
30 | @EFL_COV_LIBS@ \ | ||
31 | @ECORE_IPC_LIBS@ | ||
32 | |||
33 | lib_ecore_ipc_libecore_ipc_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 17 | lib_ecore_ipc_libecore_ipc_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
diff --git a/src/Makefile_Ecore_Psl1ght.am b/src/Makefile_Ecore_Psl1ght.am index 3364a1e18b..607ce47f0d 100644 --- a/src/Makefile_Ecore_Psl1ght.am +++ b/src/Makefile_Ecore_Psl1ght.am | |||
@@ -17,23 +17,9 @@ lib/ecore_psl1ght/spursutil.h \ | |||
17 | lib/ecore_psl1ght/Ecore_Psl1ght_Keys.h \ | 17 | lib/ecore_psl1ght/Ecore_Psl1ght_Keys.h \ |
18 | lib/ecore_psl1ght/ecore_psl1ght_private.h | 18 | lib/ecore_psl1ght/ecore_psl1ght_private.h |
19 | 19 | ||
20 | lib_ecore_psl1ght_libecore_psl1ght_la_CPPFLAGS = \ | 20 | lib_ecore_psl1ght_libecore_psl1ght_la_CPPFLAGS = @ECORE_PSL1GHT_CFLAGS@ |
21 | -I$(top_srcdir)/src/lib/eina \ | 21 | lib_ecore_psl1ght_libecore_psl1ght_la_LIBADD = @ECORE_PSL1GHT_LIBS@ |
22 | -I$(top_builddir)/src/lib/eina \ | 22 | lib_ecore_psl1ght_libecore_psl1ght_la_DEPENDENCIES = @ECORE_PSL1GHT_INTERNAL_LIBS@ |
23 | -I$(top_srcdir)/src/lib/eo \ | ||
24 | -I$(top_srcdir)/src/lib/ecore \ | ||
25 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
26 | -I$(top_srcdir)/src/lib/ecore_psl1ght \ | ||
27 | -DEFL_ECORE_PSL1GHT_BUILD \ | ||
28 | @ECORE_PSL1GHT_CFLAGS@ \ | ||
29 | @EFL_COV_CFLAGS@ | ||
30 | |||
31 | lib_ecore_psl1ght_libecore_psl1ght_la_LIBADD = \ | ||
32 | lib/ecore_input/libecore_input.la \ | ||
33 | lib/ecore/libecore.la \ | ||
34 | lib/eo/libeo.la \ | ||
35 | lib/eina/libeina.la | ||
36 | |||
37 | lib_ecore_psl1ght_libecore_psl1ght_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 23 | lib_ecore_psl1ght_libecore_psl1ght_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
38 | endif | 24 | endif |
39 | 25 | ||
diff --git a/src/Makefile_Ecore_SDL.am b/src/Makefile_Ecore_SDL.am index deaacbe077..160dd32810 100644 --- a/src/Makefile_Ecore_SDL.am +++ b/src/Makefile_Ecore_SDL.am | |||
@@ -13,23 +13,8 @@ lib/ecore_sdl/ecore_sdl.c \ | |||
13 | lib/ecore_sdl/Ecore_Sdl_Keys.h \ | 13 | lib/ecore_sdl/Ecore_Sdl_Keys.h \ |
14 | lib/ecore_sdl/ecore_sdl_private.h | 14 | lib/ecore_sdl/ecore_sdl_private.h |
15 | 15 | ||
16 | lib_ecore_sdl_libecore_sdl_la_CPPFLAGS = \ | 16 | lib_ecore_sdl_libecore_sdl_la_CPPFLAGS = @ECORE_SDL_CFLAGS@ |
17 | -I$(top_srcdir)/src/lib/eina \ | 17 | lib_ecore_sdl_libecore_sdl_la_LIBADD = @ECORE_SDL_LIBS@ |
18 | -I$(top_builddir)/src/lib/eina \ | 18 | lib_ecore_sdl_libecore_sdl_la_DEPENDENCIES = @ECORE_SDL_INTERNAL_LIBS@ |
19 | -I$(top_srcdir)/src/lib/eo \ | ||
20 | -I$(top_srcdir)/src/lib/ecore \ | ||
21 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
22 | -I$(top_srcdir)/src/lib/ecore_sdl \ | ||
23 | -DEFL_ECORE_SDL_BUILD \ | ||
24 | @EFL_COV_CFLAGS@ \ | ||
25 | @ECORE_SDL_CFLAGS@ | ||
26 | |||
27 | lib_ecore_sdl_libecore_sdl_la_LIBADD = \ | ||
28 | lib/ecore_input/libecore_input.la \ | ||
29 | lib/ecore/libecore.la \ | ||
30 | lib/eo/libeo.la \ | ||
31 | lib/eina/libeina.la \ | ||
32 | @ECORE_SDL_LIBS@ | ||
33 | |||
34 | lib_ecore_sdl_libecore_sdl_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 19 | lib_ecore_sdl_libecore_sdl_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
35 | endif | 20 | endif |
diff --git a/src/Makefile_Ecore_Wayland.am b/src/Makefile_Ecore_Wayland.am index 9afeda230d..88ffccf8e1 100644 --- a/src/Makefile_Ecore_Wayland.am +++ b/src/Makefile_Ecore_Wayland.am | |||
@@ -16,22 +16,8 @@ lib/ecore_wayland/ecore_wl_output.c \ | |||
16 | lib/ecore_wayland/ecore_wl_window.c \ | 16 | lib/ecore_wayland/ecore_wl_window.c \ |
17 | lib/ecore_wayland/ecore_wl_private.h | 17 | lib/ecore_wayland/ecore_wl_private.h |
18 | 18 | ||
19 | lib_ecore_wayland_libecore_wayland_la_CPPFLAGS = \ | 19 | lib_ecore_wayland_libecore_wayland_la_CPPFLAGS = @ECORE_WAYLAND_CFLAGS@ |
20 | -I$(top_srcdir)/src/lib/eina \ | 20 | lib_ecore_wayland_libecore_wayland_la_LIBADD = @ECORE_WAYLAND_LIBS@ |
21 | -I$(top_builddir)/src/lib/eina \ | 21 | lib_ecore_wayland_libecore_wayland_la_DEPENDENCIES = @ECORE_WAYLAND_INTERNAL_LIBS@ |
22 | -I$(top_srcdir)/src/lib/eo \ | ||
23 | -I$(top_srcdir)/src/lib/ecore \ | ||
24 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
25 | -I$(top_srcdir)/src/lib/ecore_wayland \ | ||
26 | @EFL_COV_CFLAGS@ \ | ||
27 | @ECORE_WAYLAND_CFLAGS@ | ||
28 | |||
29 | lib_ecore_wayland_libecore_wayland_la_LIBADD = \ | ||
30 | lib/ecore_input/libecore_input.la \ | ||
31 | lib/ecore/libecore.la \ | ||
32 | lib/eo/libeo.la \ | ||
33 | lib/eina/libeina.la \ | ||
34 | @ECORE_WAYLAND_LIBS@ | ||
35 | |||
36 | lib_ecore_wayland_libecore_wayland_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 22 | lib_ecore_wayland_libecore_wayland_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
37 | endif | 23 | endif |
diff --git a/src/Makefile_Ecore_Win32.am b/src/Makefile_Ecore_Win32.am index c6fbdf6161..081b28b182 100644 --- a/src/Makefile_Ecore_Win32.am +++ b/src/Makefile_Ecore_Win32.am | |||
@@ -24,25 +24,8 @@ lib/ecore_win32/ecore_win32_dnd_data_object.h \ | |||
24 | lib/ecore_win32/ecore_win32_dnd_drop_source.h \ | 24 | lib/ecore_win32/ecore_win32_dnd_drop_source.h \ |
25 | lib/ecore_win32/ecore_win32_dnd_drop_target.h | 25 | lib/ecore_win32/ecore_win32_dnd_drop_target.h |
26 | 26 | ||
27 | lib_ecore_win32_libecore_win32_la_CPPFLAGS = \ | 27 | lib_ecore_win32_libecore_win32_la_CPPFLAGS = @ECORE_WIN32_CFLAGS@ |
28 | -I$(top_srcdir)/src/lib/evil \ | 28 | lib_ecore_win32_libecore_win32_la_LIBADD = @ECORE_WIN32_LIBS@ |
29 | -I$(top_srcdir)/src/lib/eina \ | 29 | lib_ecore_win32_libecore_win32_la_DEPENDENCIES = @ECORE_WIN32_INTERNAL_LIBS@ |
30 | -I$(top_builddir)/src/lib/eina \ | ||
31 | -I$(top_srcdir)/src/lib/eo \ | ||
32 | -I$(top_srcdir)/src/lib/ecore \ | ||
33 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
34 | -I$(top_srcdir)/src/lib/ecore_win32 \ | ||
35 | -DEFL_ECORE_WIN32_BUILD \ | ||
36 | @ECORE_WIN32_CFLAGS@ \ | ||
37 | @EFL_COV_CFLAGS@ | ||
38 | |||
39 | lib_ecore_win32_libecore_win32_la_LIBADD = \ | ||
40 | lib/ecore_input/libecore_input.la \ | ||
41 | lib/ecore/libecore.la \ | ||
42 | lib/eo/libeo.la \ | ||
43 | lib/eina/libeina.la \ | ||
44 | lib/evil/libevil.la \ | ||
45 | @ECORE_WIN32_LIBS@ | ||
46 | |||
47 | lib_ecore_win32_libecore_win32_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 30 | lib_ecore_win32_libecore_win32_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
48 | endif | 31 | endif |
diff --git a/src/Makefile_Ecore_WinCE.am b/src/Makefile_Ecore_WinCE.am index 40adb9c1e1..9dbf447a38 100644 --- a/src/Makefile_Ecore_WinCE.am +++ b/src/Makefile_Ecore_WinCE.am | |||
@@ -14,25 +14,8 @@ lib/ecore_wince/ecore_wince_event.c \ | |||
14 | lib/ecore_wince/ecore_wince_window.c \ | 14 | lib/ecore_wince/ecore_wince_window.c \ |
15 | lib/ecore_wince/ecore_wince_private.h | 15 | lib/ecore_wince/ecore_wince_private.h |
16 | 16 | ||
17 | lib_ecore_wince_libecore_wince_la_CPPFLAGS = \ | 17 | lib_ecore_wince_libecore_wince_la_CPPFLAGS = @ECORE_WINCE_CFLAGS@ |
18 | -I$(top_srcdir)/src/lib/evil \ | 18 | lib_ecore_wince_libecore_wince_la_LIBADD = @ECORE_WINCE_LIBS@ |
19 | -I$(top_srcdir)/src/lib/eina \ | 19 | lib_ecore_wince_libecore_wince_la_DEPENDENCIES = @ECORE_WINCE_INTERNAL_LIBS@ |
20 | -I$(top_builddir)/src/lib/eina \ | ||
21 | -I$(top_srcdir)/src/lib/eo \ | ||
22 | -I$(top_srcdir)/src/lib/ecore \ | ||
23 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
24 | -I$(top_srcdir)/src/lib/ecore_wince \ | ||
25 | -DEFL_ECORE_WINCE_BUILD \ | ||
26 | @ECORE_WINCE_CFLAGS@ \ | ||
27 | @EFL_COV_CFLAGS@ | ||
28 | |||
29 | lib_ecore_wince_libecore_wince_la_LIBADD = \ | ||
30 | lib/ecore_input/libecore_input.la \ | ||
31 | lib/ecore/libecore.la \ | ||
32 | lib/eo/libeo.la \ | ||
33 | lib/eina/libeina.la \ | ||
34 | lib/evil/libevil.la \ | ||
35 | @ECORE_WINCE_LIBS@ | ||
36 | |||
37 | lib_ecore_wince_libecore_wince_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 20 | lib_ecore_wince_libecore_wince_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
38 | endif | 21 | endif |
diff --git a/src/Makefile_Ecore_X.am b/src/Makefile_Ecore_X.am index eea0a17f3a..017658e05e 100644 --- a/src/Makefile_Ecore_X.am +++ b/src/Makefile_Ecore_X.am | |||
@@ -96,25 +96,9 @@ lib/ecore_x/xlib/ecore_x_gesture.c \ | |||
96 | lib/ecore_x/xlib/ecore_x_private.h | 96 | lib/ecore_x/xlib/ecore_x_private.h |
97 | endif | 97 | endif |
98 | 98 | ||
99 | lib_ecore_x_libecore_x_la_CPPFLAGS = \ | 99 | lib_ecore_x_libecore_x_la_CPPFLAGS = @ECORE_X_CFLAGS@ |
100 | -I$(top_srcdir)/src/lib/eina \ | 100 | lib_ecore_x_libecore_x_la_LIBADD = @ECORE_X_LIBS@ |
101 | -I$(top_builddir)/src/lib/eina \ | 101 | lib_ecore_x_libecore_x_la_DEPENDENCIES = @ECORE_X_INTERNAL_LIBS@ |
102 | -I$(top_srcdir)/src/lib/eo \ | ||
103 | -I$(top_srcdir)/src/lib/ecore \ | ||
104 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
105 | -I$(top_srcdir)/src/lib/ecore_x \ | ||
106 | -I$(top_builddir)/src/lib/ecore_x \ | ||
107 | -DEFL_ECORE_X_BUILD \ | ||
108 | @EFL_COV_CFLAGS@ \ | ||
109 | @ECORE_X_CFLAGS@ | ||
110 | |||
111 | lib_ecore_x_libecore_x_la_LIBADD = \ | ||
112 | lib/ecore_input/libecore_input.la \ | ||
113 | lib/ecore/libecore.la \ | ||
114 | lib/eo/libeo.la \ | ||
115 | lib/eina/libeina.la \ | ||
116 | @ECORE_X_LIBS@ | ||
117 | |||
118 | lib_ecore_x_libecore_x_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 102 | lib_ecore_x_libecore_x_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
119 | 103 | ||
120 | MAINTAINERCLEANFILES += \ | 104 | MAINTAINERCLEANFILES += \ |
diff --git a/src/Makefile_Edje.am b/src/Makefile_Edje.am index ce31a03d92..d46ae08c00 100644 --- a/src/Makefile_Edje.am +++ b/src/Makefile_Edje.am | |||
@@ -4,62 +4,12 @@ | |||
4 | lib_LTLIBRARIES += lib/edje/libedje.la | 4 | lib_LTLIBRARIES += lib/edje/libedje.la |
5 | 5 | ||
6 | EDJE_COMMON_CPPFLAGS = \ | 6 | EDJE_COMMON_CPPFLAGS = \ |
7 | -I$(top_srcdir) \ | ||
8 | -I$(top_srcdir)/src/lib/eina \ | ||
9 | -I$(top_builddir)/src/lib/eina \ | ||
10 | -I$(top_srcdir)/src/lib/eo \ | ||
11 | -I$(top_builddir)/src/lib/eo \ | ||
12 | -I$(top_srcdir)/src/lib/eet \ | ||
13 | -I$(top_builddir)/src/lib/eet \ | ||
14 | -I$(top_srcdir)/src/lib/evas \ | ||
15 | -I$(top_builddir)/src/lib/evas \ | ||
16 | -I$(top_srcdir)/src/lib/ecore \ | ||
17 | -I$(top_builddir)/src/lib/ecore \ | ||
18 | -I$(top_srcdir)/src/lib/ecore_evas \ | ||
19 | -I$(top_builddir)/src/lib/ecore_evas \ | ||
20 | -I$(top_srcdir)/src/lib/ecore_file \ | ||
21 | -I$(top_builddir)/src/lib/ecore_file \ | ||
22 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
23 | -I$(top_builddir)/src/lib/ecore_input \ | ||
24 | -I$(top_srcdir)/src/lib/ecore_imf \ | ||
25 | -I$(top_builddir)/src/lib/ecore_imf \ | ||
26 | -I$(top_srcdir)/src/lib/embryo \ | ||
27 | -I$(top_builddir)/src/lib/embryo \ | ||
28 | -I$(top_srcdir)/src/lib/eio \ | ||
29 | -I$(top_builddir)/src/lib/eio \ | ||
30 | -I$(top_srcdir)/src/lib/ephysics \ | ||
31 | -I$(top_builddir)/src/lib/ephysics \ | ||
32 | -I$(top_srcdir)/src/lib/edje \ | ||
33 | -I$(top_builddir)/src/lib/edje \ | ||
34 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 7 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
35 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 8 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
36 | -DPACKAGE_DATA_DIR=\"$(datadir)/edje\" \ | 9 | -DPACKAGE_DATA_DIR=\"$(datadir)/edje\" \ |
37 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ | 10 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
38 | -DPACKAGE_SRC_DIR=\"`pwd`/$(top_srcdir)\" \ | 11 | -DPACKAGE_SRC_DIR=\"`pwd`/$(top_srcdir)\" \ |
39 | -DEFL_EDJE_BUILD \ | 12 | @EDJE_CFLAGS@ |
40 | @EFL_COV_CFLAGS@ \ | ||
41 | @EDJE_CFLAGS@ \ | ||
42 | @USE_EVIL_CFLAGS@ | ||
43 | |||
44 | EDJE_COMMON_LIBS = \ | ||
45 | lib/eina/libeina.la \ | ||
46 | lib/eo/libeo.la \ | ||
47 | lib/eet/libeet.la \ | ||
48 | lib/evas/libevas.la \ | ||
49 | lib/ecore/libecore.la \ | ||
50 | lib/ecore_evas/libecore_evas.la \ | ||
51 | lib/ecore_file/libecore_file.la \ | ||
52 | lib/ecore_input/libecore_input.la \ | ||
53 | lib/ecore_imf/libecore_imf.la \ | ||
54 | lib/ecore_imf/libecore_imf_evas.la \ | ||
55 | lib/embryo/libembryo.la \ | ||
56 | lib/eio/libeio.la \ | ||
57 | @USE_EVIL_LIBS@ \ | ||
58 | @EFL_COV_LIBS@ | ||
59 | |||
60 | if HAVE_EPHYSICS | ||
61 | EDJE_COMMON_LIBS += lib/ephysics/libephysics.la | ||
62 | endif | ||
63 | 13 | ||
64 | installed_edjemainheadersdir = $(includedir)/edje-@VMAJ@ | 14 | installed_edjemainheadersdir = $(includedir)/edje-@VMAJ@ |
65 | dist_installed_edjemainheaders_DATA = \ | 15 | dist_installed_edjemainheaders_DATA = \ |
@@ -99,7 +49,8 @@ lib/edje/edje_util.c \ | |||
99 | lib/edje/edje_var.c | 49 | lib/edje/edje_var.c |
100 | 50 | ||
101 | lib_edje_libedje_la_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 51 | lib_edje_libedje_la_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
102 | lib_edje_libedje_la_LIBADD = $(EDJE_COMMON_LIBS) @EDJE_LIBS@ | 52 | lib_edje_libedje_la_LIBADD = @EDJE_LIBS@ |
53 | lib_edje_libedje_la_DEPENDENCIES = @EDJE_INTERNAL_LIBS@ | ||
103 | lib_edje_libedje_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 54 | lib_edje_libedje_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
104 | 55 | ||
105 | if ENABLE_MULTISENSE | 56 | if ENABLE_MULTISENSE |
@@ -130,11 +81,6 @@ endif | |||
130 | 81 | ||
131 | ### Binary | 82 | ### Binary |
132 | 83 | ||
133 | EDJE_COMMON_USER_LDADD = \ | ||
134 | $(EDJE_COMMON_LIBS) \ | ||
135 | lib/edje/libedje.la \ | ||
136 | @EDJE_LDFLAGS@ | ||
137 | |||
138 | bin_PROGRAMS += \ | 84 | bin_PROGRAMS += \ |
139 | bin/edje/edje_cc \ | 85 | bin/edje/edje_cc \ |
140 | bin/edje/edje_decc \ | 86 | bin/edje/edje_decc \ |
@@ -156,7 +102,8 @@ bin/edje/edje_cc_handlers.c \ | |||
156 | bin/edje/edje_cc_sources.c \ | 102 | bin/edje/edje_cc_sources.c \ |
157 | bin/edje/edje_multisense_convert.c | 103 | bin/edje/edje_multisense_convert.c |
158 | bin_edje_edje_cc_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 104 | bin_edje_edje_cc_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
159 | bin_edje_edje_cc_LDADD = $(EDJE_COMMON_USER_LDADD) | 105 | bin_edje_edje_cc_LDADD = @USE_EDJE_LIBS@ |
106 | bin_edje_edje_cc_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ | ||
160 | 107 | ||
161 | bin_edje_edje_decc_SOURCES = \ | 108 | bin_edje_edje_decc_SOURCES = \ |
162 | bin/edje/edje_decc.c \ | 109 | bin/edje/edje_decc.c \ |
@@ -164,31 +111,38 @@ bin/edje/edje_decc.h \ | |||
164 | bin/edje/edje_cc_mem.c \ | 111 | bin/edje/edje_cc_mem.c \ |
165 | bin/edje/edje_cc_sources.c | 112 | bin/edje/edje_cc_sources.c |
166 | bin_edje_edje_decc_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 113 | bin_edje_edje_decc_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
167 | bin_edje_edje_decc_LDADD = $(EDJE_COMMON_USER_LDADD) | 114 | bin_edje_edje_decc_LDADD = @USE_EDJE_LIBS@ |
115 | bin_edje_edje_decc_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ | ||
168 | 116 | ||
169 | bin_edje_edje_player_SOURCES = bin/edje/edje_player.c | 117 | bin_edje_edje_player_SOURCES = bin/edje/edje_player.c |
170 | bin_edje_edje_player_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 118 | bin_edje_edje_player_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
171 | bin_edje_edje_player_LDADD = $(EDJE_COMMON_USER_LDADD) | 119 | bin_edje_edje_player_LDADD = @USE_EDJE_LIBS@ |
120 | bin_edje_edje_player_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ | ||
172 | 121 | ||
173 | bin_edje_edje_inspector_SOURCES = bin/edje/edje_inspector.c | 122 | bin_edje_edje_inspector_SOURCES = bin/edje/edje_inspector.c |
174 | bin_edje_edje_inspector_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 123 | bin_edje_edje_inspector_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
175 | bin_edje_edje_inspector_LDADD = $(EDJE_COMMON_USER_LDADD) | 124 | bin_edje_edje_inspector_LDADD = @USE_EDJE_LIBS@ |
125 | bin_edje_edje_inspector_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ | ||
176 | 126 | ||
177 | bin_edje_edje_external_inspector_SOURCES = bin/edje/edje_external_inspector.c | 127 | bin_edje_edje_external_inspector_SOURCES = bin/edje/edje_external_inspector.c |
178 | bin_edje_edje_external_inspector_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 128 | bin_edje_edje_external_inspector_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
179 | bin_edje_edje_external_inspector_LDADD = $(EDJE_COMMON_USER_LDADD) | 129 | bin_edje_edje_external_inspector_LDADD = @USE_EDJE_LIBS@ |
130 | bin_edje_edje_external_inspector_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ | ||
180 | 131 | ||
181 | bin_edje_edje_codegen_SOURCES = bin/edje/edje_codegen.c | 132 | bin_edje_edje_codegen_SOURCES = bin/edje/edje_codegen.c |
182 | bin_edje_edje_codegen_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 133 | bin_edje_edje_codegen_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
183 | bin_edje_edje_codegen_LDADD = $(EDJE_COMMON_USER_LDADD) | 134 | bin_edje_edje_codegen_LDADD = @USE_EDJE_LIBS@ |
135 | bin_edje_edje_codegen_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ | ||
184 | 136 | ||
185 | bin_edje_edje_pick_SOURCES = bin/edje/edje_pick.c | 137 | bin_edje_edje_pick_SOURCES = bin/edje/edje_pick.c |
186 | bin_edje_edje_pick_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 138 | bin_edje_edje_pick_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
187 | bin_edje_edje_pick_LDADD = $(EDJE_COMMON_USER_LDADD) | 139 | bin_edje_edje_pick_LDADD = @USE_EDJE_LIBS@ |
140 | bin_edje_edje_pick_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ | ||
188 | 141 | ||
189 | bin_edje_edje_watch_SOURCES = bin/edje/edje_watch.c | 142 | bin_edje_edje_watch_SOURCES = bin/edje/edje_watch.c |
190 | bin_edje_edje_watch_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) | 143 | bin_edje_edje_watch_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) |
191 | bin_edje_edje_watch_LDADD = $(EDJE_COMMON_USER_LDADD) | 144 | bin_edje_edje_watch_LDADD = @USE_EDJE_LIBS@ |
145 | bin_edje_edje_watch_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ | ||
192 | 146 | ||
193 | # EPP (Edje's CPP) | 147 | # EPP (Edje's CPP) |
194 | eppdir = $(libdir)/edje/utils/$(MODULE_ARCH) | 148 | eppdir = $(libdir)/edje/utils/$(MODULE_ARCH) |
@@ -252,11 +206,8 @@ tests/edje/edje_suite.h | |||
252 | tests_edje_edje_suite_CPPFLAGS = \ | 206 | tests_edje_edje_suite_CPPFLAGS = \ |
253 | $(EDJE_COMMON_CPPFLAGS) \ | 207 | $(EDJE_COMMON_CPPFLAGS) \ |
254 | @CHECK_CFLAGS@ | 208 | @CHECK_CFLAGS@ |
255 | 209 | tests_edje_edje_suite_LDADD = @CHECK_LIBS@ @USE_EDJE_LIBS@ | |
256 | tests_edje_edje_suite_LDADD = \ | 210 | tests_edje_edje_suite_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ |
257 | $(EDJE_COMMON_USER_LDADD) \ | ||
258 | @CHECK_LIBS@ | ||
259 | |||
260 | endif | 211 | endif |
261 | 212 | ||
262 | # Useful to other modules that generate EDJ | 213 | # Useful to other modules that generate EDJ |
diff --git a/src/Makefile_Eet.am b/src/Makefile_Eet.am index 0b238debd0..63142dc366 100644 --- a/src/Makefile_Eet.am +++ b/src/Makefile_Eet.am | |||
@@ -23,24 +23,13 @@ static_libs/lz4/lz4hc.c \ | |||
23 | static_libs/lz4/lz4hc.h | 23 | static_libs/lz4/lz4hc.h |
24 | 24 | ||
25 | lib_eet_libeet_la_CPPFLAGS = \ | 25 | lib_eet_libeet_la_CPPFLAGS = \ |
26 | -I$(top_srcdir)/src/lib/eina \ | ||
27 | -I$(top_builddir)/src/lib/eina \ | ||
28 | -I$(top_srcdir)/src/lib/eet \ | ||
29 | -I$(top_srcdir)/src/static_libs/lz4 \ | 26 | -I$(top_srcdir)/src/static_libs/lz4 \ |
30 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 27 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
31 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 28 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
32 | -DPACKAGE_DATA_DIR=\"$(datadir)/eet\" \ | 29 | -DPACKAGE_DATA_DIR=\"$(datadir)/eet\" \ |
33 | -DEFL_EET_BUILD \ | 30 | @EET_CFLAGS@ |
34 | @EFL_COV_CFLAGS@ \ | 31 | lib_eet_libeet_la_LIBADD = @EET_LIBS@ |
35 | @EET_CFLAGS@ \ | 32 | lib_eet_libeet_la_DEPENDENCIES = @EET_INTERNAL_LIBS@ |
36 | @USE_EVIL_CFLAGS@ | ||
37 | |||
38 | lib_eet_libeet_la_LIBADD = \ | ||
39 | lib/eina/libeina.la \ | ||
40 | @USE_EVIL_LIBS@ \ | ||
41 | @EET_LIBS@ \ | ||
42 | @EFL_COV_LIBS@ | ||
43 | |||
44 | lib_eet_libeet_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 33 | lib_eet_libeet_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
45 | 34 | ||
46 | EXTRA_DIST += static_libs/lz4/README | 35 | EXTRA_DIST += static_libs/lz4/README |
@@ -52,22 +41,13 @@ bin_PROGRAMS += bin/eet/eet | |||
52 | bin_eet_eet_SOURCES = bin/eet/eet_main.c | 41 | bin_eet_eet_SOURCES = bin/eet/eet_main.c |
53 | 42 | ||
54 | bin_eet_eet_CPPFLAGS = \ | 43 | bin_eet_eet_CPPFLAGS = \ |
55 | -I$(top_srcdir)/src/lib/eina \ | ||
56 | -I$(top_builddir)/src/lib/eina \ | ||
57 | -I$(top_srcdir)/src/lib/eet \ | ||
58 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 44 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
59 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 45 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
60 | -DPACKAGE_DATA_DIR=\"$(datadir)/eet\" \ | 46 | -DPACKAGE_DATA_DIR=\"$(datadir)/eet\" \ |
61 | @EFL_COV_CFLAGS@ \ | 47 | @EET_CFLAGS@ |
62 | @EET_CFLAGS@ \ | ||
63 | @USE_EVIL_CFLAGS@ | ||
64 | 48 | ||
65 | bin_eet_eet_LDADD = \ | 49 | bin_eet_eet_LDADD = @USE_EET_LIBS@ |
66 | lib/eet/libeet.la \ | 50 | bin_eet_eet_DEPENDENCIES = @USE_EET_INTERNAL_LIBS@ |
67 | lib/eina/libeina.la \ | ||
68 | @USE_EVIL_LIBS@ \ | ||
69 | @EET_LDFLAGS@ \ | ||
70 | @EFL_COV_LIBS@ | ||
71 | 51 | ||
72 | ### Unit tests | 52 | ### Unit tests |
73 | 53 | ||
@@ -81,20 +61,12 @@ tests/eet/eet_data_suite.c \ | |||
81 | tests/eet/eet_suite.h | 61 | tests/eet/eet_suite.h |
82 | 62 | ||
83 | tests_eet_eet_suite_CPPFLAGS = \ | 63 | tests_eet_eet_suite_CPPFLAGS = \ |
84 | -I$(top_srcdir)/src/lib/eina \ | ||
85 | -I$(top_builddir)/src/lib/eina \ | ||
86 | -I$(top_srcdir)/src/lib/eet \ | ||
87 | -DTESTS_WD=\"`pwd`\" \ | 64 | -DTESTS_WD=\"`pwd`\" \ |
88 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eet\" \ | 65 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eet\" \ |
89 | @CHECK_CFLAGS@ \ | 66 | @CHECK_CFLAGS@ \ |
90 | @EET_CFLAGS@ | 67 | @EET_CFLAGS@ |
91 | 68 | tests_eet_eet_suite_LDADD = @CHECK_LIBS@ @USE_EET_LIBS@ | |
92 | tests_eet_eet_suite_LDADD = \ | 69 | tests_eet_eet_suite_DEPENDENCIES = @USE_EET_INTERNAL_LIBS@ |
93 | lib/eet/libeet.la \ | ||
94 | lib/eina/libeina.la \ | ||
95 | @CHECK_LIBS@ \ | ||
96 | @EET_LDFLAGS@ | ||
97 | |||
98 | endif | 70 | endif |
99 | 71 | ||
100 | EXTRA_DIST += \ | 72 | EXTRA_DIST += \ |
diff --git a/src/Makefile_Eeze.am b/src/Makefile_Eeze.am index 3429b0282c..3c13c7abf4 100644 --- a/src/Makefile_Eeze.am +++ b/src/Makefile_Eeze.am | |||
@@ -5,30 +5,6 @@ if HAVE_EEZE | |||
5 | lib_LTLIBRARIES += \ | 5 | lib_LTLIBRARIES += \ |
6 | lib/eeze/libeeze.la | 6 | lib/eeze/libeeze.la |
7 | 7 | ||
8 | EEZE_COMMON_CPPFLAGS = \ | ||
9 | -I$(top_srcdir)/src/lib/eina \ | ||
10 | -I$(top_builddir)/src/lib/eina \ | ||
11 | -I$(top_srcdir)/src/lib/eo \ | ||
12 | -I$(top_builddir)/src/lib/eo \ | ||
13 | -I$(top_srcdir)/src/lib/ecore \ | ||
14 | -I$(top_builddir)/src/lib/ecore \ | ||
15 | -I$(top_srcdir)/src/lib/ecore_file \ | ||
16 | -I$(top_builddir)/src/lib/ecore_file \ | ||
17 | -I$(top_srcdir)/src/lib/ecore_con \ | ||
18 | -I$(top_builddir)/src/lib/ecore_con \ | ||
19 | -I$(top_srcdir)/src/lib/eet \ | ||
20 | -I$(top_builddir)/src/lib/eet \ | ||
21 | -I$(top_srcdir)/src/lib/eeze \ | ||
22 | -I$(top_builddir)/src/lib/eeze \ | ||
23 | @EFL_COV_CFLAGS@ \ | ||
24 | @EEZE_CFLAGS@ | ||
25 | |||
26 | EEZE_COMMON_LDADD = \ | ||
27 | lib/eina/libeina.la \ | ||
28 | lib/eo/libeo.la \ | ||
29 | lib/ecore/libecore.la \ | ||
30 | @EFL_COV_LIBS@ | ||
31 | |||
32 | installed_eezemainheadersdir = $(includedir)/eeze-@VMAJ@ | 8 | installed_eezemainheadersdir = $(includedir)/eeze-@VMAJ@ |
33 | dist_installed_eezemainheaders_DATA = \ | 9 | dist_installed_eezemainheaders_DATA = \ |
34 | lib/eeze/Eeze.h \ | 10 | lib/eeze/Eeze.h \ |
@@ -57,27 +33,16 @@ lib/eeze/eeze_disk_udev.c \ | |||
57 | lib/eeze/eeze_disk_mount.c \ | 33 | lib/eeze/eeze_disk_mount.c \ |
58 | lib/eeze/eeze_disk_private.h \ | 34 | lib/eeze/eeze_disk_private.h \ |
59 | lib/eeze/eeze_disk_libmount_new.c | 35 | lib/eeze/eeze_disk_libmount_new.c |
60 | |||
61 | EEZE_COMMON_LDADD += \ | ||
62 | lib/ecore_file/libecore_file.la \ | ||
63 | lib/ecore_con/libecore_con.la \ | ||
64 | lib/eet/libeet.la | ||
65 | endif | 36 | endif |
66 | 37 | ||
67 | EEZE_COMMON_LIBADD = $(EEZE_COMMON_LDADD) @EEZE_LIBS@ | ||
68 | EEZE_COMMON_LDADD += @EEZE_LDFLAGS@ | ||
69 | EEZE_COMMON_USER_LIBADD = $(EEZE_COMMON_LIBADD) lib/eeze/libeeze.la | ||
70 | EEZE_COMMON_USER_LDADD = $(EEZE_COMMON_LDADD) lib/eeze/libeeze.la | ||
71 | |||
72 | lib_eeze_libeeze_la_CPPFLAGS = \ | 38 | lib_eeze_libeeze_la_CPPFLAGS = \ |
73 | $(EEZE_COMMON_CPPFLAGS) \ | ||
74 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 39 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
75 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 40 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
76 | -DPACKAGE_DATA_DIR=\"$(datadir)/eeze\" \ | 41 | -DPACKAGE_DATA_DIR=\"$(datadir)/eeze\" \ |
77 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ | 42 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
78 | -DEFL_EEZE_BUILD | 43 | @EEZE_CFLAGS@ |
79 | 44 | lib_eeze_libeeze_la_LIBADD = @EEZE_LIBS@ | |
80 | lib_eeze_libeeze_la_LIBADD = $(EEZE_COMMON_LIBADD) | 45 | lib_eeze_libeeze_la_DEPENDENCIES = @EEZE_INTERNAL_LIBS@ |
81 | lib_eeze_libeeze_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 46 | lib_eeze_libeeze_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
82 | 47 | ||
83 | if HAVE_EEZE_TIZEN | 48 | if HAVE_EEZE_TIZEN |
@@ -86,20 +51,21 @@ eezemodulesensortizen_LTLIBRARIES = modules/eeze/sensor/tizen/module.la | |||
86 | modules_eeze_sensor_tizen_module_la_SOURCES = \ | 51 | modules_eeze_sensor_tizen_module_la_SOURCES = \ |
87 | modules/eeze/sensor/tizen/tizen.c | 52 | modules/eeze/sensor/tizen/tizen.c |
88 | modules_eeze_sensor_tizen_module_la_CPPFLAGS = \ | 53 | modules_eeze_sensor_tizen_module_la_CPPFLAGS = \ |
89 | $(EEZE_COMMON_CPPFLAGS) \ | 54 | @EEZE_CFLAGS@ \ |
90 | @TIZEN_SENSOR_CFLAGS@ | 55 | @TIZEN_SENSOR_CFLAGS@ |
91 | modules_eeze_sensor_tizen_module_la_LIBADD = \ | 56 | modules_eeze_sensor_tizen_module_la_LIBADD = \ |
92 | $(EEZE_COMMON_USER_LIBADD) \ | 57 | @USE_EEZE_LIBS@ \ |
93 | @TIZEN_SENSOR_LIBS@ | 58 | @TIZEN_SENSOR_LIBS@ |
59 | modules_eeze_sensor_tizen_module_la_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ | ||
94 | modules_eeze_sensor_tizen_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 60 | modules_eeze_sensor_tizen_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
95 | modules_eeze_sensor_tizen_module_la_LIBTOOLFLAGS = --tag=disable-static | 61 | modules_eeze_sensor_tizen_module_la_LIBTOOLFLAGS = --tag=disable-static |
96 | else | 62 | else |
97 | eezemodulesensorfakedir = $(libdir)/eeze/modules/sensor/fake/$(MODULE_ARCH) | 63 | eezemodulesensorfakedir = $(libdir)/eeze/modules/sensor/fake/$(MODULE_ARCH) |
98 | eezemodulesensorfake_LTLIBRARIES = modules/eeze/sensor/fake/module.la | 64 | eezemodulesensorfake_LTLIBRARIES = modules/eeze/sensor/fake/module.la |
99 | modules_eeze_sensor_fake_module_la_SOURCES = \ | 65 | modules_eeze_sensor_fake_module_la_SOURCES = modules/eeze/sensor/fake/fake.c |
100 | modules/eeze/sensor/fake/fake.c | 66 | modules_eeze_sensor_fake_module_la_CPPFLAGS = @EEZE_CFLAGS@ |
101 | modules_eeze_sensor_fake_module_la_CPPFLAGS = $(EEZE_COMMON_CPPFLAGS) | 67 | modules_eeze_sensor_fake_module_la_LIBADD = @USE_EEZE_LIBS@ |
102 | modules_eeze_sensor_fake_module_la_LIBADD = $(EEZE_COMMON_USER_LIBADD) | 68 | modules_eeze_sensor_fake_module_la_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ |
103 | modules_eeze_sensor_fake_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 69 | modules_eeze_sensor_fake_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
104 | modules_eeze_sensor_fake_module_la_LIBTOOLFLAGS = --tag=disable-static | 70 | modules_eeze_sensor_fake_module_la_LIBTOOLFLAGS = --tag=disable-static |
105 | endif | 71 | endif |
@@ -111,12 +77,14 @@ bin/eeze/eeze_udev_test \ | |||
111 | bin/eeze/eeze_sensor_test | 77 | bin/eeze/eeze_sensor_test |
112 | 78 | ||
113 | bin_eeze_eeze_udev_test_SOURCES = bin/eeze/eeze_udev_test.c | 79 | bin_eeze_eeze_udev_test_SOURCES = bin/eeze/eeze_udev_test.c |
114 | bin_eeze_eeze_udev_test_CPPFLAGS = $(EEZE_COMMON_CPPFLAGS) | 80 | bin_eeze_eeze_udev_test_CPPFLAGS = @EEZE_CFLAGS@ |
115 | bin_eeze_eeze_udev_test_LDADD = $(EEZE_COMMON_USER_LDADD) | 81 | bin_eeze_eeze_udev_test_LDADD = @USE_EEZE_LIBS@ |
82 | bin_eeze_eeze_udev_test_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ | ||
116 | 83 | ||
117 | bin_eeze_eeze_sensor_test_SOURCES = bin/eeze/eeze_sensor_test.c | 84 | bin_eeze_eeze_sensor_test_SOURCES = bin/eeze/eeze_sensor_test.c |
118 | bin_eeze_eeze_sensor_test_CPPFLAGS = $(EEZE_COMMON_CPPFLAGS) | 85 | bin_eeze_eeze_sensor_test_CPPFLAGS = @EEZE_CFLAGS@ |
119 | bin_eeze_eeze_sensor_test_LDADD = $(EEZE_COMMON_USER_LDADD) | 86 | bin_eeze_eeze_sensor_test_LDADD = @USE_EEZE_LIBS@ |
87 | bin_eeze_eeze_sensor_test_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ | ||
120 | 88 | ||
121 | if HAVE_EEZE_MOUNT | 89 | if HAVE_EEZE_MOUNT |
122 | bin_PROGRAMS += \ | 90 | bin_PROGRAMS += \ |
@@ -126,22 +94,26 @@ bin/eeze/eeze_disk_ls \ | |||
126 | bin/eeze/eeze_scanner | 94 | bin/eeze/eeze_scanner |
127 | 95 | ||
128 | bin_eeze_eeze_mount_SOURCES = bin/eeze/eeze_mount.c | 96 | bin_eeze_eeze_mount_SOURCES = bin/eeze/eeze_mount.c |
129 | bin_eeze_eeze_mount_CPPFLAGS = $(EEZE_COMMON_CPPFLAGS) | 97 | bin_eeze_eeze_mount_CPPFLAGS = @EEZE_CFLAGS@ |
130 | bin_eeze_eeze_mount_LDADD = $(EEZE_COMMON_USER_LDADD) | 98 | bin_eeze_eeze_mount_LDADD = @USE_EEZE_LIBS@ |
99 | bin_eeze_eeze_mount_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ | ||
131 | 100 | ||
132 | bin_eeze_eeze_umount_SOURCES = bin/eeze/eeze_umount.c | 101 | bin_eeze_eeze_umount_SOURCES = bin/eeze/eeze_umount.c |
133 | bin_eeze_eeze_umount_CPPFLAGS = $(EEZE_COMMON_CPPFLAGS) | 102 | bin_eeze_eeze_umount_CPPFLAGS = @EEZE_CFLAGS@ |
134 | bin_eeze_eeze_umount_LDADD = $(EEZE_COMMON_USER_LDADD) | 103 | bin_eeze_eeze_umount_LDADD = @USE_EEZE_LIBS@ |
104 | bin_eeze_eeze_umount_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ | ||
135 | 105 | ||
136 | bin_eeze_eeze_disk_ls_SOURCES = bin/eeze/eeze_disk_ls.c | 106 | bin_eeze_eeze_disk_ls_SOURCES = bin/eeze/eeze_disk_ls.c |
137 | bin_eeze_eeze_disk_ls_CPPFLAGS = $(EEZE_COMMON_CPPFLAGS) | 107 | bin_eeze_eeze_disk_ls_CPPFLAGS = @EEZE_CFLAGS@ |
138 | bin_eeze_eeze_disk_ls_LDADD = $(EEZE_COMMON_USER_LDADD) | 108 | bin_eeze_eeze_disk_ls_LDADD = @USE_EEZE_LIBS@ |
109 | bin_eeze_eeze_disk_ls_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ | ||
139 | 110 | ||
140 | bin_eeze_eeze_scanner_SOURCES = \ | 111 | bin_eeze_eeze_scanner_SOURCES = \ |
141 | bin/eeze/eeze_scanner.c \ | 112 | bin/eeze/eeze_scanner.c \ |
142 | bin/eeze/eeze_scanner.h | 113 | bin/eeze/eeze_scanner.h |
143 | bin_eeze_eeze_scanner_CPPFLAGS = $(EEZE_COMMON_CPPFLAGS) | 114 | bin_eeze_eeze_scanner_CPPFLAGS = @EEZE_CFLAGS@ |
144 | bin_eeze_eeze_scanner_LDADD = $(EEZE_COMMON_USER_LDADD) | 115 | bin_eeze_eeze_scanner_LDADD = @USE_EEZE_LIBS@ |
116 | bin_eeze_eeze_scanner_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ | ||
145 | endif | 117 | endif |
146 | 118 | ||
147 | setuid_root_mode = a=rx,u+xs | 119 | setuid_root_mode = a=rx,u+xs |
@@ -158,9 +130,9 @@ check_PROGRAMS += tests/eeze/eeze_suite | |||
158 | tests_eeze_eeze_suite_SOURCES = tests/eeze/eeze_suite.c | 130 | tests_eeze_eeze_suite_SOURCES = tests/eeze/eeze_suite.c |
159 | tests_eeze_eeze_suite_CPPFLAGS = \ | 131 | tests_eeze_eeze_suite_CPPFLAGS = \ |
160 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eeze\" \ | 132 | -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/eeze\" \ |
161 | $(EEZE_COMMON_CPPFLAGS) \ | 133 | @EEZE_CFLAGS@ \ |
162 | @CHECK_CFLAGS@ | 134 | @CHECK_CFLAGS@ |
163 | tests_eeze_eeze_suite_LDADD = $(EEZE_COMMON_USER_LDADD) @CHECK_LIBS@ | 135 | tests_eeze_eeze_suite_LDADD = @CHECK_LIBS@ @USE_EEZE_LIBS@ |
164 | 136 | tests_eeze_eeze_suite_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@ | |
165 | endif | 137 | endif |
166 | endif | 138 | endif |
diff --git a/src/Makefile_Efreet.am b/src/Makefile_Efreet.am index 3ca667bdf9..bcddfd4293 100644 --- a/src/Makefile_Efreet.am +++ b/src/Makefile_Efreet.am | |||
@@ -7,55 +7,13 @@ lib/efreet/libefreet_mime.la \ | |||
7 | lib/efreet/libefreet_trash.la | 7 | lib/efreet/libefreet_trash.la |
8 | 8 | ||
9 | EFREET_COMMON_CPPFLAGS = \ | 9 | EFREET_COMMON_CPPFLAGS = \ |
10 | -I$(top_srcdir)/src/lib/eina \ | ||
11 | -I$(top_builddir)/src/lib/eina \ | ||
12 | -I$(top_srcdir)/src/lib/eo \ | ||
13 | -I$(top_builddir)/src/lib/eo \ | ||
14 | -I$(top_srcdir)/src/lib/ecore \ | ||
15 | -I$(top_builddir)/src/lib/ecore \ | ||
16 | -I$(top_srcdir)/src/lib/ecore_file \ | ||
17 | -I$(top_builddir)/src/lib/ecore_file \ | ||
18 | -I$(top_srcdir)/src/lib/eet \ | ||
19 | -I$(top_builddir)/src/lib/eet \ | ||
20 | -I$(top_srcdir)/src/lib/edbus \ | ||
21 | -I$(top_builddir)/src/lib/edbus \ | ||
22 | -I$(top_srcdir)/src/lib/efreet \ | ||
23 | -I$(top_builddir)/src/lib/efreet \ | ||
24 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 10 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
25 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 11 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
26 | -DPACKAGE_DATA_DIR=\"$(datadir)/efreet\" \ | 12 | -DPACKAGE_DATA_DIR=\"$(datadir)/efreet\" \ |
27 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ | 13 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
28 | -DDATA_DIR=\"$(datadir)\" \ | 14 | -DDATA_DIR=\"$(datadir)\" \ |
29 | -DLOCALE_DIR=\"@LOCALE_DIR@\" \ | 15 | -DLOCALE_DIR=\"@LOCALE_DIR@\" \ |
30 | -DEFL_EFREET_BUILD \ | 16 | @EFREET_CFLAGS@ |
31 | @EFL_COV_CFLAGS@ \ | ||
32 | @EFREET_CFLAGS@ \ | ||
33 | @USE_EVIL_CFLAGS@ | ||
34 | |||
35 | EFREET_COMMON_LIBADD = \ | ||
36 | lib/eina/libeina.la \ | ||
37 | lib/eo/libeo.la \ | ||
38 | lib/ecore/libecore.la \ | ||
39 | lib/ecore_file/libecore_file.la \ | ||
40 | lib/eet/libeet.la \ | ||
41 | lib/edbus/libedbus2.la \ | ||
42 | @USE_EVIL_LIBS@ \ | ||
43 | @EFREET_LIBS@ \ | ||
44 | @EFL_COV_LIBS@ | ||
45 | |||
46 | EFREET_COMMON_USER_LIBADD = $(EFREET_COMMON_LIBADD) lib/efreet/libefreet.la | ||
47 | |||
48 | EFREET_COMMON_USER_LDADD = \ | ||
49 | lib/efreet/libefreet.la \ | ||
50 | lib/eina/libeina.la \ | ||
51 | lib/eo/libeo.la \ | ||
52 | lib/ecore/libecore.la \ | ||
53 | lib/ecore_file/libecore_file.la \ | ||
54 | lib/eet/libeet.la \ | ||
55 | lib/edbus/libedbus2.la \ | ||
56 | @USE_EVIL_LIBS@ \ | ||
57 | @EFREET_LDFLAGS@ \ | ||
58 | @EFL_COV_LIBS@ | ||
59 | 17 | ||
60 | installed_efreetmainheadersdir = $(includedir)/efreet-@VMAJ@ | 18 | installed_efreetmainheadersdir = $(includedir)/efreet-@VMAJ@ |
61 | dist_installed_efreetmainheaders_DATA = \ | 19 | dist_installed_efreetmainheaders_DATA = \ |
@@ -88,19 +46,22 @@ lib/efreet/efreet_xml.h \ | |||
88 | lib/efreet/efreet_cache_private.h | 46 | lib/efreet/efreet_cache_private.h |
89 | 47 | ||
90 | lib_efreet_libefreet_la_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 48 | lib_efreet_libefreet_la_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
91 | lib_efreet_libefreet_la_LIBADD = $(EFREET_COMMON_LIBADD) | 49 | lib_efreet_libefreet_la_LIBADD = @EFREET_LIBS@ |
50 | lib_efreet_libefreet_la_DEPENDENCIES = @EFREET_INTERNAL_LIBS@ | ||
92 | lib_efreet_libefreet_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 51 | lib_efreet_libefreet_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
93 | 52 | ||
94 | # libefreet_mime.la | 53 | # libefreet_mime.la |
95 | lib_efreet_libefreet_mime_la_SOURCES = lib/efreet/efreet_mime.c | 54 | lib_efreet_libefreet_mime_la_SOURCES = lib/efreet/efreet_mime.c |
96 | lib_efreet_libefreet_mime_la_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 55 | lib_efreet_libefreet_mime_la_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
97 | lib_efreet_libefreet_mime_la_LIBADD = $(EFREET_COMMON_USER_LIBADD) | 56 | lib_efreet_libefreet_mime_la_LIBADD = @USE_EFREET_LIBS@ |
57 | lib_efreet_libefreet_mime_la_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ | ||
98 | lib_efreet_libefreet_mime_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 58 | lib_efreet_libefreet_mime_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
99 | 59 | ||
100 | # libefreet_trash.la | 60 | # libefreet_trash.la |
101 | lib_efreet_libefreet_trash_la_SOURCES = lib/efreet/efreet_trash.c | 61 | lib_efreet_libefreet_trash_la_SOURCES = lib/efreet/efreet_trash.c |
102 | lib_efreet_libefreet_trash_la_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 62 | lib_efreet_libefreet_trash_la_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
103 | lib_efreet_libefreet_trash_la_LIBADD = $(EFREET_COMMON_USER_LIBADD) | 63 | lib_efreet_libefreet_trash_la_LIBADD = @USE_EFREET_LIBS@ |
64 | lib_efreet_libefreet_trash_la_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ | ||
104 | lib_efreet_libefreet_trash_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 65 | lib_efreet_libefreet_trash_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
105 | 66 | ||
106 | 67 | ||
@@ -117,7 +78,8 @@ bin/efreet/efreetd_cache.h \ | |||
117 | bin/efreet/efreetd_cache.c | 78 | bin/efreet/efreetd_cache.c |
118 | 79 | ||
119 | bin_efreet_efreetd_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 80 | bin_efreet_efreetd_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
120 | bin_efreet_efreetd_LDADD = $(EFREET_COMMON_USER_LDADD) | 81 | bin_efreet_efreetd_LDADD = @USE_EFREET_LIBS@ |
82 | bin_efreet_efreetd_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ | ||
121 | 83 | ||
122 | efreetinternal_bindir=$(libdir)/efreet/$(MODULE_ARCH) | 84 | efreetinternal_bindir=$(libdir)/efreet/$(MODULE_ARCH) |
123 | efreetinternal_bin_PROGRAMS = \ | 85 | efreetinternal_bin_PROGRAMS = \ |
@@ -125,14 +87,14 @@ bin/efreet/efreet_desktop_cache_create \ | |||
125 | bin/efreet/efreet_icon_cache_create | 87 | bin/efreet/efreet_icon_cache_create |
126 | 88 | ||
127 | bin_efreet_efreet_desktop_cache_create_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 89 | bin_efreet_efreet_desktop_cache_create_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
128 | bin_efreet_efreet_desktop_cache_create_LDADD = $(EFREET_COMMON_USER_LDADD) | 90 | bin_efreet_efreet_desktop_cache_create_LDADD = @USE_EFREET_LIBS@ |
129 | bin_efreet_efreet_desktop_cache_create_SOURCES = \ | 91 | bin_efreet_efreet_desktop_cache_create_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ |
130 | bin/efreet/efreet_desktop_cache_create.c | 92 | bin_efreet_efreet_desktop_cache_create_SOURCES = bin/efreet/efreet_desktop_cache_create.c |
131 | 93 | ||
132 | bin_efreet_efreet_icon_cache_create_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 94 | bin_efreet_efreet_icon_cache_create_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
133 | bin_efreet_efreet_icon_cache_create_LDADD = $(EFREET_COMMON_USER_LDADD) | 95 | bin_efreet_efreet_icon_cache_create_LDADD = @USE_EFREET_LIBS@ |
134 | bin_efreet_efreet_icon_cache_create_SOURCES = \ | 96 | bin_efreet_efreet_icon_cache_create_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ |
135 | bin/efreet/efreet_icon_cache_create.c | 97 | bin_efreet_efreet_icon_cache_create_SOURCES = bin/efreet/efreet_icon_cache_create.c |
136 | 98 | ||
137 | ### Unit tests | 99 | ### Unit tests |
138 | 100 | ||
@@ -151,7 +113,10 @@ tests/efreet/compare/efreet_menu_alloc | |||
151 | # efreet_test | 113 | # efreet_test |
152 | tests_efreet_efreet_test_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 114 | tests_efreet_efreet_test_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
153 | tests_efreet_efreet_test_LDADD = \ | 115 | tests_efreet_efreet_test_LDADD = \ |
154 | $(EFREET_COMMON_USER_LDADD) \ | 116 | @USE_EFREET_LIBS@ \ |
117 | lib/efreet/libefreet_mime.la | ||
118 | tests_efreet_efreet_test_DEPENDENCIES = \ | ||
119 | @USE_EFREET_INTERNAL_LIBS@ \ | ||
155 | lib/efreet/libefreet_mime.la | 120 | lib/efreet/libefreet_mime.la |
156 | 121 | ||
157 | tests_efreet_efreet_test_SOURCES = \ | 122 | tests_efreet_efreet_test_SOURCES = \ |
@@ -168,38 +133,40 @@ tests/efreet/main.c | |||
168 | 133 | ||
169 | # efreet_spec_test | 134 | # efreet_spec_test |
170 | tests_efreet_efreet_spec_test_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 135 | tests_efreet_efreet_spec_test_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
171 | tests_efreet_efreet_spec_test_LDADD = $(EFREET_COMMON_USER_LDADD) | 136 | tests_efreet_efreet_spec_test_LDADD = @USE_EFREET_LIBS@ |
172 | tests_efreet_efreet_spec_test_SOURCES = \ | 137 | tests_efreet_efreet_spec_test_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ |
173 | tests/efreet/efreet_spec_test.c | 138 | tests_efreet_efreet_spec_test_SOURCES = tests/efreet/efreet_spec_test.c |
174 | 139 | ||
175 | # efreet_cache_test | 140 | # efreet_cache_test |
176 | tests_efreet_efreet_cache_test_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 141 | tests_efreet_efreet_cache_test_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
177 | tests_efreet_efreet_cache_test_LDADD = $(EFREET_COMMON_USER_LDADD) | 142 | tests_efreet_efreet_cache_test_LDADD = @USE_EFREET_LIBS@ |
178 | tests_efreet_efreet_cache_test_SOURCES = \ | 143 | tests_efreet_efreet_cache_test_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ |
179 | tests/efreet/ef_cache.c | 144 | tests_efreet_efreet_cache_test_SOURCES = tests/efreet/ef_cache.c |
180 | 145 | ||
181 | # efreet_icon_cache_dump | 146 | # efreet_icon_cache_dump |
182 | tests_efreet_efreet_icon_cache_dump_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 147 | tests_efreet_efreet_icon_cache_dump_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
183 | tests_efreet_efreet_icon_cache_dump_LDADD = $(EFREET_COMMON_USER_LDADD) | 148 | tests_efreet_efreet_icon_cache_dump_LDADD = @USE_EFREET_LIBS@ |
184 | tests_efreet_efreet_icon_cache_dump_SOURCES = \ | 149 | tests_efreet_efreet_icon_cache_dump_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ |
185 | tests/efreet/efreet_icon_cache_dump.c | 150 | tests_efreet_efreet_icon_cache_dump_SOURCES = tests/efreet/efreet_icon_cache_dump.c |
186 | 151 | ||
187 | # efreet_user_dir | 152 | # efreet_user_dir |
188 | tests_efreet_efreet_user_dir_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 153 | tests_efreet_efreet_user_dir_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
189 | tests_efreet_efreet_user_dir_LDADD = $(EFREET_COMMON_USER_LDADD) | 154 | tests_efreet_efreet_user_dir_LDADD = @USE_EFREET_LIBS@ |
190 | tests_efreet_efreet_user_dir_SOURCES = \ | 155 | tests_efreet_efreet_user_dir_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ |
191 | tests/efreet/efreet_user_dir.c | 156 | tests_efreet_efreet_user_dir_SOURCES = tests/efreet/efreet_user_dir.c |
192 | 157 | ||
193 | # efreet_alloc | 158 | # efreet_alloc |
194 | tests_efreet_compare_efreet_alloc_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 159 | tests_efreet_compare_efreet_alloc_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
195 | tests_efreet_compare_efreet_alloc_LDADD = $(EFREET_COMMON_USER_LDADD) | 160 | tests_efreet_compare_efreet_alloc_LDADD = @USE_EFREET_LIBS@ |
161 | tests_efreet_compare_efreet_alloc_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ | ||
196 | tests_efreet_compare_efreet_alloc_SOURCES = \ | 162 | tests_efreet_compare_efreet_alloc_SOURCES = \ |
197 | tests/efreet/compare/efreet_alloc.c \ | 163 | tests/efreet/compare/efreet_alloc.c \ |
198 | tests/efreet/compare/comp.h | 164 | tests/efreet/compare/comp.h |
199 | 165 | ||
200 | # efreet_menu_alloc | 166 | # efreet_menu_alloc |
201 | tests_efreet_compare_efreet_menu_alloc_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) | 167 | tests_efreet_compare_efreet_menu_alloc_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) |
202 | tests_efreet_compare_efreet_menu_alloc_LDADD = $(EFREET_COMMON_USER_LDADD) | 168 | tests_efreet_compare_efreet_menu_alloc_LDADD = @USE_EFREET_LIBS@ |
169 | tests_efreet_compare_efreet_menu_alloc_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ | ||
203 | tests_efreet_compare_efreet_menu_alloc_SOURCES = \ | 170 | tests_efreet_compare_efreet_menu_alloc_SOURCES = \ |
204 | tests/efreet/compare/efreet_menu_alloc.c \ | 171 | tests/efreet/compare/efreet_menu_alloc.c \ |
205 | tests/efreet/compare/comp.h | 172 | tests/efreet/compare/comp.h |
@@ -230,7 +197,8 @@ tests/efreet/efreet_test_efreet.c \ | |||
230 | tests/efreet/efreet_test_efreet_cache.c | 197 | tests/efreet/efreet_test_efreet_cache.c |
231 | 198 | ||
232 | tests_efreet_efreet_suite_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) @CHECK_CFLAGS@ | 199 | tests_efreet_efreet_suite_CPPFLAGS = $(EFREET_COMMON_CPPFLAGS) @CHECK_CFLAGS@ |
233 | tests_efreet_efreet_suite_LDADD = $(EFREET_COMMON_USER_LDADD) @CHECK_LIBS@ | 200 | tests_efreet_efreet_suite_LDADD = @CHECK_LIBS@ @USE_EFREET_LIBS@ |
201 | tests_efreet_efreet_suite_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ | ||
234 | 202 | ||
235 | endif | 203 | endif |
236 | 204 | ||
diff --git a/src/Makefile_Eina.am b/src/Makefile_Eina.am index 51c32cb689..80af55f93f 100644 --- a/src/Makefile_Eina.am +++ b/src/Makefile_Eina.am | |||
@@ -154,28 +154,19 @@ else | |||
154 | lib_eina_libeina_la_SOURCES += lib/eina/eina_file.c | 154 | lib_eina_libeina_la_SOURCES += lib/eina/eina_file.c |
155 | endif | 155 | endif |
156 | 156 | ||
157 | EINA_MODULE_COMMON_CPPFLAGS = \ | ||
158 | -I$(top_srcdir)/src/lib/eina \ | ||
159 | -I$(top_builddir)/src/lib/eina \ | ||
160 | -DEFL_EINA_BUILD | ||
161 | |||
162 | EINA_MODULE_COMMON_CFLAGS = \ | 157 | EINA_MODULE_COMMON_CFLAGS = \ |
163 | @EINA_CFLAGS@ \ | 158 | @EINA_CFLAGS@ \ |
164 | @VALGRIND_CFLAGS@ | 159 | @VALGRIND_CFLAGS@ |
165 | 160 | ||
166 | EINA_MODULE_COMMON_LIBADD = \ | ||
167 | lib/eina/libeina.la \ | ||
168 | @EINA_LIBS@ | ||
169 | |||
170 | if EINA_STATIC_BUILD_CHAINED_POOL | 161 | if EINA_STATIC_BUILD_CHAINED_POOL |
171 | lib_eina_libeina_la_SOURCES += modules/eina/mp/chained_pool/eina_chained_mempool.c | 162 | lib_eina_libeina_la_SOURCES += modules/eina/mp/chained_pool/eina_chained_mempool.c |
172 | else | 163 | else |
173 | einampchainedpooldir = $(libdir)/eina/modules/mp/chained_pool/$(MODULE_ARCH) | 164 | einampchainedpooldir = $(libdir)/eina/modules/mp/chained_pool/$(MODULE_ARCH) |
174 | einampchainedpool_LTLIBRARIES = modules/eina/mp/chained_pool/chained_pool_module.la | 165 | einampchainedpool_LTLIBRARIES = modules/eina/mp/chained_pool/chained_pool_module.la |
175 | 166 | ||
176 | modules_eina_mp_chained_pool_chained_pool_module_la_CPPFLAGS = $(EINA_MODULE_COMMON_CPPFLAGS) | ||
177 | modules_eina_mp_chained_pool_chained_pool_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) | 167 | modules_eina_mp_chained_pool_chained_pool_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) |
178 | modules_eina_mp_chained_pool_chained_pool_module_la_LIBADD = $(EINA_MODULE_COMMON_LIBADD) | 168 | modules_eina_mp_chained_pool_chained_pool_module_la_LIBADD = @USE_EINA_LIBS@ |
169 | modules_eina_mp_chained_pool_chained_pool_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ | ||
179 | modules_eina_mp_chained_pool_chained_pool_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 170 | modules_eina_mp_chained_pool_chained_pool_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
180 | modules_eina_mp_chained_pool_chained_pool_module_la_LIBTOOLFLAGS = --tag=disable-static | 171 | modules_eina_mp_chained_pool_chained_pool_module_la_LIBTOOLFLAGS = --tag=disable-static |
181 | modules_eina_mp_chained_pool_chained_pool_module_la_SOURCES = modules/eina/mp/chained_pool/eina_chained_mempool.c | 172 | modules_eina_mp_chained_pool_chained_pool_module_la_SOURCES = modules/eina/mp/chained_pool/eina_chained_mempool.c |
@@ -187,9 +178,9 @@ else | |||
187 | einamponebigdir = $(libdir)/eina/modules/mp/one_big/$(MODULE_ARCH) | 178 | einamponebigdir = $(libdir)/eina/modules/mp/one_big/$(MODULE_ARCH) |
188 | einamponebig_LTLIBRARIES = modules/eina/mp/one_big/one_big_module.la | 179 | einamponebig_LTLIBRARIES = modules/eina/mp/one_big/one_big_module.la |
189 | 180 | ||
190 | modules_eina_mp_one_big_one_big_module_la_CPPFLAGS = $(EINA_MODULE_COMMON_CPPFLAGS) | ||
191 | modules_eina_mp_one_big_one_big_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) | 181 | modules_eina_mp_one_big_one_big_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) |
192 | modules_eina_mp_one_big_one_big_module_la_LIBADD = $(EINA_MODULE_COMMON_LIBADD) | 182 | modules_eina_mp_one_big_one_big_module_la_LIBADD = @USE_EINA_LIBS@ |
183 | modules_eina_mp_one_big_one_big_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ | ||
193 | modules_eina_mp_one_big_one_big_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 184 | modules_eina_mp_one_big_one_big_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
194 | modules_eina_mp_one_big_one_big_module_la_LIBTOOLFLAGS = --tag=disable-static | 185 | modules_eina_mp_one_big_one_big_module_la_LIBTOOLFLAGS = --tag=disable-static |
195 | modules_eina_mp_one_big_one_big_module_la_SOURCES = modules/eina/mp/one_big/eina_one_big.c | 186 | modules_eina_mp_one_big_one_big_module_la_SOURCES = modules/eina/mp/one_big/eina_one_big.c |
@@ -201,31 +192,23 @@ else | |||
201 | einamppassthroughdir = $(libdir)/eina/modules/mp/pass_through/$(MODULE_ARCH) | 192 | einamppassthroughdir = $(libdir)/eina/modules/mp/pass_through/$(MODULE_ARCH) |
202 | einamppassthrough_LTLIBRARIES = modules/eina/mp/pass_through/pass_through_module.la | 193 | einamppassthrough_LTLIBRARIES = modules/eina/mp/pass_through/pass_through_module.la |
203 | 194 | ||
204 | modules_eina_mp_pass_through_pass_through_module_la_CPPFLAGS = $(EINA_MODULE_COMMON_CPPFLAGS) | ||
205 | modules_eina_mp_pass_through_pass_through_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) | 195 | modules_eina_mp_pass_through_pass_through_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) |
206 | modules_eina_mp_pass_through_pass_through_module_la_LIBADD = $(EINA_MODULE_COMMON_LIBADD) | 196 | modules_eina_mp_pass_through_pass_through_module_la_LIBADD = @USE_EINA_LIBS@ |
197 | modules_eina_mp_pass_through_pass_through_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ | ||
207 | modules_eina_mp_pass_through_pass_through_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 198 | modules_eina_mp_pass_through_pass_through_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
208 | modules_eina_mp_pass_through_pass_through_module_la_LIBTOOLFLAGS = --tag=disable-static | 199 | modules_eina_mp_pass_through_pass_through_module_la_LIBTOOLFLAGS = --tag=disable-static |
209 | modules_eina_mp_pass_through_pass_through_module_la_SOURCES = modules/eina/mp/pass_through/eina_pass_through.c | 200 | modules_eina_mp_pass_through_pass_through_module_la_SOURCES = modules/eina/mp/pass_through/eina_pass_through.c |
210 | endif | 201 | endif |
211 | 202 | ||
212 | lib_eina_libeina_la_CPPFLAGS = \ | 203 | lib_eina_libeina_la_CPPFLAGS = \ |
213 | -I$(top_srcdir)/src/lib/eina \ | 204 | @EINA_CFLAGS@ \ |
214 | -I$(top_builddir)/src/lib/eina \ | ||
215 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 205 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
216 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 206 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
217 | -DPACKAGE_DATA_DIR=\"$(datadir)/eina\" \ | 207 | -DPACKAGE_DATA_DIR=\"$(datadir)/eina\" \ |
218 | -DEFL_EINA_BUILD \ | 208 | @VALGRIND_CFLAGS@ |
219 | @EFL_COV_CFLAGS@ \ | 209 | |
220 | @EINA_CFLAGS@ \ | 210 | lib_eina_libeina_la_LIBADD = @EINA_LIBS@ @DL_LIBS@ |
221 | @VALGRIND_CFLAGS@ \ | 211 | lib_eina_libeina_la_DEPENDENCIES = @EINA_INTERNAL_LIBS@ @DL_INTERNAL_LIBS@ |
222 | @USE_EVIL_CFLAGS@ | ||
223 | |||
224 | lib_eina_libeina_la_LIBADD = \ | ||
225 | @EINA_LIBS@ \ | ||
226 | @EFL_COV_LIBS@ \ | ||
227 | @USE_EVIL_LIBS@ \ | ||
228 | @DL_LIBS@ | ||
229 | lib_eina_libeina_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 212 | lib_eina_libeina_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
230 | 213 | ||
231 | ### Script | 214 | ### Script |
@@ -281,28 +264,16 @@ tests/eina/eina_test_barrier.c | |||
281 | # tests/eina/eina_test_model.c | 264 | # tests/eina/eina_test_model.c |
282 | 265 | ||
283 | tests_eina_eina_suite_CPPFLAGS = \ | 266 | tests_eina_eina_suite_CPPFLAGS = \ |
284 | -I$(top_srcdir)/src/lib/eina \ | ||
285 | -I$(top_builddir)/src/lib/eina \ | ||
286 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)/tests/eina\" \ | 267 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)/tests/eina\" \ |
287 | @CHECK_CFLAGS@ \ | 268 | @CHECK_CFLAGS@ \ |
288 | @EINA_CFLAGS@ | 269 | @EINA_CFLAGS@ |
289 | 270 | tests_eina_eina_suite_LDADD = @CHECK_LIBS@ @USE_EINA_LIBS@ | |
290 | tests_eina_eina_suite_LDADD = \ | 271 | tests_eina_eina_suite_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ |
291 | lib/eina/libeina.la \ | ||
292 | @CHECK_LIBS@ \ | ||
293 | @EINA_LDFLAGS@ | ||
294 | 272 | ||
295 | tests_eina_cxx_compile_test_SOURCES = tests/eina/cxx_compile_test.cxx | 273 | tests_eina_cxx_compile_test_SOURCES = tests/eina/cxx_compile_test.cxx |
296 | 274 | tests_eina_cxx_compile_test_CPPFLAGS = @EINA_CFLAGS@ | |
297 | tests_eina_cxx_compile_test_CPPFLAGS = \ | 275 | tests_eina_cxx_compile_test_LDADD = @USE_EINA_LIBS@ |
298 | -I$(top_srcdir)/src/lib/eina \ | 276 | tests_eina_cxx_compile_test_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ |
299 | -I$(top_builddir)/src/lib/eina \ | ||
300 | @CHECK_CFLAGS@ \ | ||
301 | @EINA_CFLAGS@ | ||
302 | |||
303 | tests_eina_cxx_compile_test_LDADD = \ | ||
304 | lib/eina/libeina.la \ | ||
305 | @EINA_LDFLAGS@ | ||
306 | 277 | ||
307 | EXTRA_LTLIBRARIES = tests/eina/module_dummy.la | 278 | EXTRA_LTLIBRARIES = tests/eina/module_dummy.la |
308 | 279 | ||
@@ -311,19 +282,12 @@ check-local: tests/eina/module_dummy.la | |||
311 | tests_eina_module_dummy_la_SOURCES = tests/eina/eina_test_module_dummy.c | 282 | tests_eina_module_dummy_la_SOURCES = tests/eina/eina_test_module_dummy.c |
312 | 283 | ||
313 | tests_eina_module_dummy_la_CPPFLAGS = \ | 284 | tests_eina_module_dummy_la_CPPFLAGS = \ |
314 | -I$(top_srcdir)/src/lib/eina \ | ||
315 | -I$(top_builddir)/src/lib/eina \ | ||
316 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)/tests/eina\" \ | 285 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)/tests/eina\" \ |
317 | @CHECK_CFLAGS@ \ | 286 | @CHECK_CFLAGS@ \ |
318 | @EINA_CFLAGS@ \ | 287 | @EINA_CFLAGS@ |
319 | -DEFL_EINA_BUILD | 288 | tests_eina_module_dummy_la_LIBADD = @USE_EINA_LIBS@ |
320 | 289 | tests_eina_module_dummy_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ | |
321 | tests_eina_module_dummy_la_LIBADD = \ | ||
322 | lib/eina/libeina.la \ | ||
323 | @EINA_LIBS@ | ||
324 | |||
325 | tests_eina_module_dummy_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 290 | tests_eina_module_dummy_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
326 | |||
327 | tests_eina_module_dummy_la_LIBTOOLFLAGS = --tag=disable-static | 291 | tests_eina_module_dummy_la_LIBTOOLFLAGS = --tag=disable-static |
328 | 292 | ||
329 | endif | 293 | endif |
diff --git a/src/Makefile_Eio.am b/src/Makefile_Eio.am index 40816e65e3..8d4738ad93 100644 --- a/src/Makefile_Eio.am +++ b/src/Makefile_Eio.am | |||
@@ -26,23 +26,7 @@ lib_eio_libeio_la_SOURCES += lib/eio/eio_monitor_win32.c | |||
26 | endif | 26 | endif |
27 | endif | 27 | endif |
28 | 28 | ||
29 | lib_eio_libeio_la_CPPFLAGS = \ | 29 | lib_eio_libeio_la_CPPFLAGS = @EIO_CFLAGS@ |
30 | -I$(top_srcdir)/src/lib/eina \ | 30 | lib_eio_libeio_la_LIBADD = @EIO_LIBS@ |
31 | -I$(top_builddir)/src/lib/eina \ | 31 | lib_eio_libeio_la_DEPENDENCIES = @EIO_INTERNAL_LIBS@ |
32 | -I$(top_srcdir)/src/lib/eo \ | ||
33 | -I$(top_srcdir)/src/lib/eet \ | ||
34 | -I$(top_srcdir)/src/lib/ecore \ | ||
35 | -I$(top_srcdir)/src/lib/eio \ | ||
36 | -DEFL_EIO_BUILD \ | ||
37 | @EIO_CFLAGS@ \ | ||
38 | @EFL_COV_CFLAGS@ | ||
39 | |||
40 | lib_eio_libeio_la_LIBADD = \ | ||
41 | lib/eina/libeina.la \ | ||
42 | lib/eo/libeo.la \ | ||
43 | lib/eet/libeet.la \ | ||
44 | lib/ecore/libecore.la \ | ||
45 | @EIO_LIBS@ \ | ||
46 | @EFL_COV_LIBS@ | ||
47 | |||
48 | lib_eio_libeio_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 32 | lib_eio_libeio_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
diff --git a/src/Makefile_Embryo.am b/src/Makefile_Embryo.am index 8d07096f30..47bc04b0ad 100644 --- a/src/Makefile_Embryo.am +++ b/src/Makefile_Embryo.am | |||
@@ -17,20 +17,12 @@ lib/embryo/embryo_time.c \ | |||
17 | lib/embryo/embryo_private.h | 17 | lib/embryo/embryo_private.h |
18 | 18 | ||
19 | lib_embryo_libembryo_la_CPPFLAGS = \ | 19 | lib_embryo_libembryo_la_CPPFLAGS = \ |
20 | -I$(top_srcdir)/src/lib/eina \ | ||
21 | -I$(top_builddir)/src/lib/eina \ | ||
22 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 20 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
23 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 21 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
24 | -DPACKAGE_DATA_DIR=\"$(datadir)/embryo\" \ | 22 | -DPACKAGE_DATA_DIR=\"$(datadir)/embryo\" \ |
25 | -DEFL_EMBRYO_BUILD \ | 23 | @EMBRYO_CFLAGS@ |
26 | @EMBRYO_CFLAGS@ \ | 24 | lib_embryo_libembryo_la_LIBADD = @EMBRYO_LIBS@ |
27 | @USE_EVIL_CFLAGS@ | 25 | lib_embryo_libembryo_la_DEPENDENCIES = @EMBRYO_INTERNAL_LIBS@ |
28 | |||
29 | lib_embryo_libembryo_la_LIBADD = \ | ||
30 | lib/eina/libeina.la \ | ||
31 | @EMBRYO_LIBS@ \ | ||
32 | @USE_EVIL_LIBS@ | ||
33 | |||
34 | lib_embryo_libembryo_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 26 | lib_embryo_libembryo_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
35 | 27 | ||
36 | ### Binary | 28 | ### Binary |
@@ -55,21 +47,14 @@ bin/embryo/embryo_cc_prefix.c \ | |||
55 | bin/embryo/embryo_cc_prefix.h | 47 | bin/embryo/embryo_cc_prefix.h |
56 | 48 | ||
57 | bin_embryo_embryo_cc_CPPFLAGS = \ | 49 | bin_embryo_embryo_cc_CPPFLAGS = \ |
58 | -I$(top_srcdir)/src/lib/eina \ | ||
59 | -I$(top_builddir)/src/lib/eina \ | ||
60 | -I$(top_srcdir)/src/lib/embryo \ | ||
61 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 50 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
62 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 51 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
63 | -DPACKAGE_DATA_DIR=\"$(datadir)/embryo\" \ | 52 | -DPACKAGE_DATA_DIR=\"$(datadir)/embryo\" \ |
64 | -DPACKAGE_SRC_DIR=\"`pwd`/$(top_srcdir)\" \ | 53 | -DPACKAGE_SRC_DIR=\"`pwd`/$(top_srcdir)\" \ |
65 | @EMBRYO_CFLAGS@ \ | 54 | @EMBRYO_CFLAGS@ |
66 | @USE_EVIL_CFLAGS@ | ||
67 | 55 | ||
68 | bin_embryo_embryo_cc_LDADD = \ | 56 | bin_embryo_embryo_cc_LDADD = @USE_EMBRYO_LIBS@ |
69 | lib/embryo/libembryo.la \ | 57 | bin_embryo_embryo_cc_DEPENDENCIES = @USE_EMBRYO_INTERNAL_LIBS@ |
70 | lib/eina/libeina.la \ | ||
71 | @EMBRYO_LDFLAGS@ \ | ||
72 | @USE_EVIL_LIBS@ | ||
73 | 58 | ||
74 | EXTRA_DIST += \ | 59 | EXTRA_DIST += \ |
75 | bin/embryo/embryo_cc_sc5.scp \ | 60 | bin/embryo/embryo_cc_sc5.scp \ |
diff --git a/src/Makefile_Emotion.am b/src/Makefile_Emotion.am index 45a2dedad0..085f2b4e53 100644 --- a/src/Makefile_Emotion.am +++ b/src/Makefile_Emotion.am | |||
@@ -3,45 +3,6 @@ | |||
3 | lib_LTLIBRARIES += \ | 3 | lib_LTLIBRARIES += \ |
4 | lib/emotion/libemotion.la | 4 | lib/emotion/libemotion.la |
5 | 5 | ||
6 | EMOTION_COMMON_CPPFLAGS = \ | ||
7 | -I$(top_srcdir)/src/lib/eina \ | ||
8 | -I$(top_builddir)/src/lib/eina \ | ||
9 | -I$(top_srcdir)/src/lib/eo \ | ||
10 | -I$(top_builddir)/src/lib/eo \ | ||
11 | -I$(top_srcdir)/src/lib/ecore \ | ||
12 | -I$(top_builddir)/src/lib/ecore \ | ||
13 | -I$(top_srcdir)/src/lib/ecore_x \ | ||
14 | -I$(top_builddir)/src/lib/ecore_x \ | ||
15 | -I$(top_srcdir)/src/lib/ecore_input \ | ||
16 | -I$(top_builddir)/src/lib/ecore_input \ | ||
17 | -I$(top_srcdir)/src/lib/ecore_evas \ | ||
18 | -I$(top_builddir)/src/lib/ecore_evas \ | ||
19 | -I$(top_srcdir)/src/lib/eet \ | ||
20 | -I$(top_builddir)/src/lib/eet \ | ||
21 | -I$(top_srcdir)/src/lib/evas \ | ||
22 | -I$(top_builddir)/src/lib/evas \ | ||
23 | -I$(top_srcdir)/src/lib/eio \ | ||
24 | -I$(top_builddir)/src/lib/eio \ | ||
25 | -I$(top_srcdir)/src/lib/eeze \ | ||
26 | -I$(top_builddir)/src/lib/eeze \ | ||
27 | -I$(top_srcdir)/src/lib/emotion \ | ||
28 | -I$(top_builddir)/src/lib/emotion \ | ||
29 | @EFL_COV_CFLAGS@ \ | ||
30 | @EMOTION_CFLAGS@ | ||
31 | |||
32 | EMOTION_COMMON_LDADD = \ | ||
33 | lib/eina/libeina.la \ | ||
34 | lib/eo/libeo.la \ | ||
35 | lib/ecore/libecore.la \ | ||
36 | lib/eet/libeet.la \ | ||
37 | lib/evas/libevas.la \ | ||
38 | lib/eio/libeio.la \ | ||
39 | @EFL_COV_LIBS@ | ||
40 | |||
41 | if EMOTION_HAVE_V4L2 | ||
42 | EMOTION_COMMON_LDADD += lib/eeze/libeeze.la | ||
43 | endif | ||
44 | |||
45 | installed_emotionmainheadersdir = $(includedir)/emotion-@VMAJ@ | 6 | installed_emotionmainheadersdir = $(includedir)/emotion-@VMAJ@ |
46 | dist_installed_emotionmainheaders_DATA = lib/emotion/Emotion.h | 7 | dist_installed_emotionmainheaders_DATA = lib/emotion/Emotion.h |
47 | 8 | ||
@@ -54,20 +15,14 @@ lib/emotion/emotion_webcam.c \ | |||
54 | lib/emotion/emotion_modules.c \ | 15 | lib/emotion/emotion_modules.c \ |
55 | lib/emotion/emotion_main.c | 16 | lib/emotion/emotion_main.c |
56 | 17 | ||
57 | EMOTION_COMMON_LIBADD = $(EMOTION_COMMON_LDADD) @EMOTION_LIBS@ | ||
58 | EMOTION_COMMON_LDADD += @EMOTION_LDFLAGS@ | ||
59 | EMOTION_COMMON_USER_LIBADD = $(EMOTION_COMMON_LIBADD) lib/emotion/libemotion.la | ||
60 | EMOTION_COMMON_USER_LDADD = $(EMOTION_COMMON_LDADD) lib/emotion/libemotion.la | ||
61 | |||
62 | lib_emotion_libemotion_la_CPPFLAGS = \ | 18 | lib_emotion_libemotion_la_CPPFLAGS = \ |
63 | $(EMOTION_COMMON_CPPFLAGS) \ | ||
64 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 19 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
65 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 20 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
66 | -DPACKAGE_DATA_DIR=\"$(datadir)/emotion\" \ | 21 | -DPACKAGE_DATA_DIR=\"$(datadir)/emotion\" \ |
67 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ | 22 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
68 | -DEFL_EMOTION_BUILD | 23 | @EMOTION_CFLAGS@ |
69 | 24 | lib_emotion_libemotion_la_LIBADD = @EMOTION_LIBS@ | |
70 | lib_emotion_libemotion_la_LIBADD = $(EMOTION_COMMON_LIBADD) | 25 | lib_emotion_libemotion_la_DEPENDENCIES = @EMOTION_INTERNAL_LIBS@ |
71 | lib_emotion_libemotion_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 26 | lib_emotion_libemotion_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
72 | 27 | ||
73 | ## Modules | 28 | ## Modules |
@@ -86,11 +41,12 @@ emotionmodulexinedir = $(libdir)/emotion/modules/xine/$(MODULE_ARCH) | |||
86 | emotionmodulexine_LTLIBRARIES = modules/emotion/xine/module.la | 41 | emotionmodulexine_LTLIBRARIES = modules/emotion/xine/module.la |
87 | modules_emotion_xine_module_la_SOURCES = $(EMOTION_XINE_SOURCES) | 42 | modules_emotion_xine_module_la_SOURCES = $(EMOTION_XINE_SOURCES) |
88 | modules_emotion_xine_module_la_CPPFLAGS = \ | 43 | modules_emotion_xine_module_la_CPPFLAGS = \ |
89 | $(EMOTION_COMMON_CPPFLAGS) \ | 44 | @EMOTION_CFLAGS@ \ |
90 | @EMOTION_MODULE_XINE_CFLAGS@ | 45 | @EMOTION_MODULE_XINE_CFLAGS@ |
91 | modules_emotion_xine_module_la_LIBADD = \ | 46 | modules_emotion_xine_module_la_LIBADD = \ |
92 | $(EMOTION_COMMON_USER_LIBADD) \ | 47 | @USE_EMOTION_LIBS@ \ |
93 | @EMOTION_MODULE_XINE_LIBS@ | 48 | @EMOTION_MODULE_XINE_LIBS@ |
49 | modules_emotion_xine_module_la_DEPENDENCIES = @USE_EMOTION_INTERNAL_LIBS@ | ||
94 | modules_emotion_xine_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 50 | modules_emotion_xine_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
95 | modules_emotion_xine_module_la_LIBTOOLFLAGS = --tag=disable-static | 51 | modules_emotion_xine_module_la_LIBTOOLFLAGS = --tag=disable-static |
96 | endif | 52 | endif |
@@ -107,28 +63,24 @@ modules/emotion/gstreamer/emotion_sink.c | |||
107 | 63 | ||
108 | if EMOTION_STATIC_BUILD_GSTREAMER | 64 | if EMOTION_STATIC_BUILD_GSTREAMER |
109 | lib_emotion_libemotion_la_SOURCES += $(EMOTION_GSTREAMER_SOURCES) | 65 | lib_emotion_libemotion_la_SOURCES += $(EMOTION_GSTREAMER_SOURCES) |
110 | if HAVE_ECORE_X | ||
111 | EMOTION_COMMON_LDADD += \ | ||
112 | lib/ecore_evas/libecore_evas.la \ | ||
113 | lib/ecore_x/libecore_x.la | ||
114 | endif | ||
115 | else | 66 | else |
116 | if EMOTION_BUILD_GSTREAMER | 67 | if EMOTION_BUILD_GSTREAMER |
117 | emotionmodulegstreamerdir = $(libdir)/emotion/modules/gstreamer/$(MODULE_ARCH) | 68 | emotionmodulegstreamerdir = $(libdir)/emotion/modules/gstreamer/$(MODULE_ARCH) |
118 | emotionmodulegstreamer_LTLIBRARIES = modules/emotion/gstreamer/module.la | 69 | emotionmodulegstreamer_LTLIBRARIES = modules/emotion/gstreamer/module.la |
119 | modules_emotion_gstreamer_module_la_SOURCES = $(EMOTION_GSTREAMER_SOURCES) | 70 | modules_emotion_gstreamer_module_la_SOURCES = $(EMOTION_GSTREAMER_SOURCES) |
120 | modules_emotion_gstreamer_module_la_CPPFLAGS = \ | 71 | modules_emotion_gstreamer_module_la_CPPFLAGS = \ |
121 | $(EMOTION_COMMON_CPPFLAGS) \ | 72 | @EMOTION_CFLAGS@ \ |
122 | @EMOTION_MODULE_GSTREAMER_CFLAGS@ | 73 | @EMOTION_MODULE_GSTREAMER_CFLAGS@ |
123 | modules_emotion_gstreamer_module_la_LIBADD = \ | 74 | modules_emotion_gstreamer_module_la_LIBADD = \ |
124 | $(EMOTION_COMMON_USER_LIBADD) \ | 75 | @USE_EMOTION_LIBS@ \ |
125 | @EMOTION_MODULE_GSTREAMER_LIBS@ | 76 | @EMOTION_MODULE_GSTREAMER_LIBS@ |
77 | modules_emotion_gstreamer_module_la_DEPENDENCIES = @USE_EMOTION_INTERNAL_LIBS@ | ||
126 | modules_emotion_gstreamer_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 78 | modules_emotion_gstreamer_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
127 | modules_emotion_gstreamer_module_la_LIBTOOLFLAGS = --tag=disable-static | 79 | modules_emotion_gstreamer_module_la_LIBTOOLFLAGS = --tag=disable-static |
128 | if HAVE_ECORE_X | 80 | if HAVE_ECORE_X |
129 | modules_emotion_gstreamer_module_la_LIBADD += \ | 81 | modules_emotion_gstreamer_module_la_CPPFLAGS += @ECORE_X_CFLAGS@ @ECORE_EVAS_CFLAGS@ |
130 | lib/ecore_evas/libecore_evas.la \ | 82 | modules_emotion_gstreamer_module_la_LIBADD += @USE_ECORE_X_LIBS@ @USE_ECORE_EVAS_LIBS@ |
131 | lib/ecore_x/libecore_x.la | 83 | modules_emotion_gstreamer_module_la_DEPENDENCIES += @USE_ECORE_X_INTERNAL_LIBS@ @USE_ECORE_EVAS_INTERNAL_LIBS@ |
132 | endif | 84 | endif |
133 | endif | 85 | endif |
134 | endif | 86 | endif |
@@ -146,12 +98,12 @@ emotionmodulegenericdir = $(libdir)/emotion/modules/generic/$(MODULE_ARCH) | |||
146 | emotionmodulegeneric_LTLIBRARIES = modules/emotion/generic/module.la | 98 | emotionmodulegeneric_LTLIBRARIES = modules/emotion/generic/module.la |
147 | modules_emotion_generic_module_la_SOURCES = $(EMOTION_GENERIC_SOURCES) | 99 | modules_emotion_generic_module_la_SOURCES = $(EMOTION_GENERIC_SOURCES) |
148 | modules_emotion_generic_module_la_CPPFLAGS = \ | 100 | modules_emotion_generic_module_la_CPPFLAGS = \ |
149 | $(EMOTION_COMMON_CPPFLAGS) \ | 101 | @EMOTION_CFLAGS@ \ |
150 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 102 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
151 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 103 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
152 | -DPACKAGE_DATA_DIR=\"$(datadir)/emotion\" | 104 | -DPACKAGE_DATA_DIR=\"$(datadir)/emotion\" |
153 | modules_emotion_generic_module_la_LIBADD = \ | 105 | modules_emotion_generic_module_la_LIBADD = @USE_EMOTION_LIBS@ |
154 | $(EMOTION_COMMON_USER_LIBADD) | 106 | modules_emotion_generic_module_la_DEPENDENCIES = @USE_EMOTION_INTERNAL_LIBS@ |
155 | modules_emotion_generic_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 107 | modules_emotion_generic_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
156 | modules_emotion_generic_module_la_LIBTOOLFLAGS = --tag=disable-static | 108 | modules_emotion_generic_module_la_LIBTOOLFLAGS = --tag=disable-static |
157 | endif | 109 | endif |
@@ -170,11 +122,15 @@ emotionedjeexternal_LTLIBRARIES = edje_external/emotion/module.la | |||
170 | edje_external_emotion_module_la_SOURCES = \ | 122 | edje_external_emotion_module_la_SOURCES = \ |
171 | edje_external/emotion/emotion.c | 123 | edje_external/emotion/emotion.c |
172 | edje_external_emotion_module_la_CPPFLAGS = \ | 124 | edje_external_emotion_module_la_CPPFLAGS = \ |
173 | $(EMOTION_COMMON_CPPFLAGS) \ | 125 | @EDJE_CFLAGS@ \ |
174 | $(EDJE_COMMON_CPPFLAGS) | 126 | @EMOTION_CFLAGS@ \ |
127 | -DPACKAGE_DATA_DIR=\"$(datadir)/emotion\" | ||
175 | edje_external_emotion_module_la_LIBADD = \ | 128 | edje_external_emotion_module_la_LIBADD = \ |
176 | $(EMOTION_COMMON_USER_LIBADD) \ | 129 | @USE_EDJE_LIBS@ \ |
177 | $(EDJE_COMMON_USER_LIBADD) | 130 | @USE_EMOTION_LIBS@ |
131 | edje_external_emotion_module_la_DEPENDENCIES = \ | ||
132 | @USE_EDJE_INTERNAL_LIBS@ \ | ||
133 | @USE_EMOTION_INTERNAL_LIBS@ | ||
178 | edje_external_emotion_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 134 | edje_external_emotion_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
179 | edje_external_emotion_module_la_LIBTOOLFLAGS = --tag=disable-static | 135 | edje_external_emotion_module_la_LIBTOOLFLAGS = --tag=disable-static |
180 | 136 | ||
@@ -190,18 +146,15 @@ tests_emotion_emotion_test_SOURCES = \ | |||
190 | tests/emotion/emotion_test_main.c | 146 | tests/emotion/emotion_test_main.c |
191 | 147 | ||
192 | tests_emotion_emotion_test_CPPFLAGS = \ | 148 | tests_emotion_emotion_test_CPPFLAGS = \ |
193 | $(EMOTION_COMMON_CPPFLAGS) \ | ||
194 | -I$(top_srcdir)/src/lib/edje \ | ||
195 | -I$(top_builddir)/src/lib/edje \ | ||
196 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 149 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
197 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 150 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
198 | -DPACKAGE_DATA_DIR=\"$(datadir)/emotion\" \ | 151 | -DPACKAGE_DATA_DIR=\"$(datadir)/emotion\" \ |
199 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" | 152 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
153 | @EDJE_CFLAGS@ \ | ||
154 | @EMOTION_CFLAGS@ | ||
200 | 155 | ||
201 | tests_emotion_emotion_test_LDADD = \ | 156 | tests_emotion_emotion_test_LDADD = @USE_EDJE_LIBS@ @USE_EMOTION_LIBS@ |
202 | $(EMOTION_COMMON_USER_LDADD) \ | 157 | tests_emotion_emotion_test_DEPENDENCIES = @USE_EDJE_INTERNAL_LIBS@ @USE_EMOTION_INTERNAL_LIBS@ |
203 | lib/ecore_evas/libecore_evas.la \ | ||
204 | lib/edje/libedje.la | ||
205 | 158 | ||
206 | tests/emotion/data/theme.edj: tests/emotion/data/theme.edc bin/edje/edje_cc | 159 | tests/emotion/data/theme.edj: tests/emotion/data/theme.edc bin/edje/edje_cc |
207 | @$(MKDIR_P) tests/emotion/data | 160 | @$(MKDIR_P) tests/emotion/data |
diff --git a/src/Makefile_Eo.am b/src/Makefile_Eo.am index 9c5795d47f..f2dd3c4eb1 100644 --- a/src/Makefile_Eo.am +++ b/src/Makefile_Eo.am | |||
@@ -11,17 +11,9 @@ lib/eo/eo.c \ | |||
11 | lib/eo/eo_base_class.c \ | 11 | lib/eo/eo_base_class.c \ |
12 | lib/eo/eo_private.h | 12 | lib/eo/eo_private.h |
13 | 13 | ||
14 | lib_eo_libeo_la_CPPFLAGS = \ | 14 | lib_eo_libeo_la_CPPFLAGS = -DNDEBUG @EO_CFLAGS@ |
15 | -I$(top_srcdir)/src/lib/eina \ | 15 | lib_eo_libeo_la_LIBADD = @EO_LIBS@ |
16 | -I$(top_builddir)/src/lib/eina \ | 16 | lib_eo_libeo_la_DEPENDENCIES = @EO_INTERNAL_LIBS@ |
17 | -I$(top_srcdir)/src/lib/eo \ | ||
18 | -DNDEBUG \ | ||
19 | -DEFL_EO_BUILD \ | ||
20 | @EFL_COV_CFLAGS@ \ | ||
21 | @EO_CFLAGS@ \ | ||
22 | @USE_EVIL_CFLAGS@ | ||
23 | |||
24 | lib_eo_libeo_la_LIBADD = lib/eina/libeina.la @EO_LIBS@ @EFL_COV_LIBS@ | ||
25 | lib_eo_libeo_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 17 | lib_eo_libeo_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
26 | 18 | ||
27 | ### Unit tests | 19 | ### Unit tests |
@@ -46,17 +38,9 @@ tests/eo/access/access_main.c \ | |||
46 | tests/eo/access/access_simple.c \ | 38 | tests/eo/access/access_simple.c \ |
47 | tests/eo/access/access_simple.h \ | 39 | tests/eo/access/access_simple.h \ |
48 | tests/eo/access/access_simple_protected.h | 40 | tests/eo/access/access_simple_protected.h |
49 | 41 | tests_eo_test_access_CPPFLAGS = @EO_CFLAGS@ | |
50 | tests_eo_test_access_CPPFLAGS = \ | 42 | tests_eo_test_access_LDADD = @USE_EO_LIBS@ |
51 | -I$(top_srcdir)/src/lib/eina \ | 43 | tests_eo_test_access_DEPENDENCIES = @USE_EO_INTERNAL_LIBS@ |
52 | -I$(top_builddir)/src/lib/eina \ | ||
53 | -I$(top_srcdir)/src/lib/eo \ | ||
54 | @CHECK_CFLAGS@ \ | ||
55 | @EO_CFLAGS@ | ||
56 | |||
57 | tests_eo_test_access_LDADD = \ | ||
58 | lib/eo/libeo.la \ | ||
59 | @EO_LDFLAGS@ | ||
60 | 44 | ||
61 | tests_eo_test_composite_objects_SOURCES = \ | 45 | tests_eo_test_composite_objects_SOURCES = \ |
62 | tests/eo/composite_objects/composite_objects_comp.c \ | 46 | tests/eo/composite_objects/composite_objects_comp.c \ |
@@ -64,17 +48,9 @@ tests/eo/composite_objects/composite_objects_comp.h \ | |||
64 | tests/eo/composite_objects/composite_objects_main.c \ | 48 | tests/eo/composite_objects/composite_objects_main.c \ |
65 | tests/eo/composite_objects/composite_objects_simple.c \ | 49 | tests/eo/composite_objects/composite_objects_simple.c \ |
66 | tests/eo/composite_objects/composite_objects_simple.h | 50 | tests/eo/composite_objects/composite_objects_simple.h |
67 | 51 | tests_eo_test_composite_objects_CPPFLAGS = @EO_CFLAGS@ | |
68 | tests_eo_test_composite_objects_CPPFLAGS = \ | 52 | tests_eo_test_composite_objects_LDADD = @USE_EO_LIBS@ |
69 | -I$(top_srcdir)/src/lib/eina \ | 53 | tests_eo_test_composite_objects_DEPENDENCIES = @USE_EO_INTERNAL_LIBS@ |
70 | -I$(top_builddir)/src/lib/eina \ | ||
71 | -I$(top_srcdir)/src/lib/eo \ | ||
72 | @CHECK_CFLAGS@ \ | ||
73 | @EO_CFLAGS@ | ||
74 | |||
75 | tests_eo_test_composite_objects_LDADD = \ | ||
76 | lib/eo/libeo.la \ | ||
77 | @EO_LDFLAGS@ | ||
78 | 54 | ||
79 | tests_eo_test_constructors_SOURCES = \ | 55 | tests_eo_test_constructors_SOURCES = \ |
80 | tests/eo/constructors/constructors_main.c \ | 56 | tests/eo/constructors/constructors_main.c \ |
@@ -94,17 +70,9 @@ tests/eo/constructors/constructors_simple6.c \ | |||
94 | tests/eo/constructors/constructors_simple6.h \ | 70 | tests/eo/constructors/constructors_simple6.h \ |
95 | tests/eo/constructors/constructors_simple7.c \ | 71 | tests/eo/constructors/constructors_simple7.c \ |
96 | tests/eo/constructors/constructors_simple7.h | 72 | tests/eo/constructors/constructors_simple7.h |
97 | 73 | tests_eo_test_constructors_CPPFLAGS = @EO_CFLAGS@ | |
98 | tests_eo_test_constructors_CPPFLAGS = \ | 74 | tests_eo_test_constructors_LDADD = @USE_EO_LIBS@ |
99 | -I$(top_srcdir)/src/lib/eina \ | 75 | tests_eo_test_constructors_DEPENDENCIES = @USE_EO_INTERNAL_LIBS@ |
100 | -I$(top_builddir)/src/lib/eina \ | ||
101 | -I$(top_srcdir)/src/lib/eo \ | ||
102 | @CHECK_CFLAGS@ \ | ||
103 | @EO_CFLAGS@ | ||
104 | |||
105 | tests_eo_test_constructors_LDADD = \ | ||
106 | lib/eo/libeo.la \ | ||
107 | @EO_LDFLAGS@ | ||
108 | 76 | ||
109 | if EFL_ENABLE_TESTS | 77 | if EFL_ENABLE_TESTS |
110 | 78 | ||
@@ -116,19 +84,13 @@ tests/eo/suite/eo_suite.h \ | |||
116 | tests/eo/suite/eo_test_class_errors.c \ | 84 | tests/eo/suite/eo_test_class_errors.c \ |
117 | tests/eo/suite/eo_test_general.c \ | 85 | tests/eo/suite/eo_test_general.c \ |
118 | tests/eo/suite/eo_test_init.c | 86 | tests/eo/suite/eo_test_init.c |
119 | |||
120 | tests_eo_eo_suite_CPPFLAGS = \ | 87 | tests_eo_eo_suite_CPPFLAGS = \ |
121 | -I$(top_srcdir)/src/lib/eina \ | ||
122 | -I$(top_builddir)/src/lib/eina \ | ||
123 | -I$(top_srcdir)/src/lib/eo \ | ||
124 | -DNDEBUG \ | 88 | -DNDEBUG \ |
125 | @CHECK_CFLAGS@ \ | 89 | @CHECK_CFLAGS@ \ |
126 | @EO_CFLAGS@ | 90 | @EO_CFLAGS@ |
127 | 91 | ||
128 | tests_eo_eo_suite_LDADD = \ | 92 | tests_eo_eo_suite_LDADD = @CHECK_LIBS@ @USE_EO_LIBS@ |
129 | lib/eo/libeo.la \ | 93 | tests_eo_eo_suite_DEPENDENCIES = @USE_EO_INTERNAL_LIBS@ |
130 | @CHECK_LIBS@ \ | ||
131 | @EO_LDFLAGS@ | ||
132 | 94 | ||
133 | endif | 95 | endif |
134 | 96 | ||
@@ -142,17 +104,9 @@ tests/eo/function_overrides/function_overrides_inherit3.h \ | |||
142 | tests/eo/function_overrides/function_overrides_main.c \ | 104 | tests/eo/function_overrides/function_overrides_main.c \ |
143 | tests/eo/function_overrides/function_overrides_simple.c \ | 105 | tests/eo/function_overrides/function_overrides_simple.c \ |
144 | tests/eo/function_overrides/function_overrides_simple.h | 106 | tests/eo/function_overrides/function_overrides_simple.h |
145 | 107 | tests_eo_test_function_overrides_CPPFLAGS = @EO_CFLAGS@ | |
146 | tests_eo_test_function_overrides_CPPFLAGS = \ | 108 | tests_eo_test_function_overrides_LDADD = @USE_EO_LIBS@ |
147 | -I$(top_srcdir)/src/lib/eina \ | 109 | tests_eo_test_function_overrides_DEPENDENCIES = @USE_EO_INTERNAL_LIBS@ |
148 | -I$(top_builddir)/src/lib/eina \ | ||
149 | -I$(top_srcdir)/src/lib/eo \ | ||
150 | @CHECK_CFLAGS@ \ | ||
151 | @EO_CFLAGS@ | ||
152 | |||
153 | tests_eo_test_function_overrides_LDADD = \ | ||
154 | lib/eo/libeo.la \ | ||
155 | @EO_LDFLAGS@ | ||
156 | 110 | ||
157 | tests_eo_test_interface_SOURCES = \ | 111 | tests_eo_test_interface_SOURCES = \ |
158 | tests/eo/interface/interface_interface.c \ | 112 | tests/eo/interface/interface_interface.c \ |
@@ -162,17 +116,9 @@ tests/eo/interface/interface_interface2.h \ | |||
162 | tests/eo/interface/interface_main.c \ | 116 | tests/eo/interface/interface_main.c \ |
163 | tests/eo/interface/interface_simple.c \ | 117 | tests/eo/interface/interface_simple.c \ |
164 | tests/eo/interface/interface_simple.h | 118 | tests/eo/interface/interface_simple.h |
165 | 119 | tests_eo_test_interface_CPPFLAGS = @EO_CFLAGS@ | |
166 | tests_eo_test_interface_CPPFLAGS = \ | 120 | tests_eo_test_interface_LDADD = @USE_EO_LIBS@ |
167 | -I$(top_srcdir)/src/lib/eina \ | 121 | tests_eo_test_interface_DEPENDENCIES = @USE_EO_INTERNAL_LIBS@ |
168 | -I$(top_builddir)/src/lib/eina \ | ||
169 | -I$(top_srcdir)/src/lib/eo \ | ||
170 | @CHECK_CFLAGS@ \ | ||
171 | @EO_CFLAGS@ | ||
172 | |||
173 | tests_eo_test_interface_LDADD = \ | ||
174 | lib/eo/libeo.la \ | ||
175 | @EO_LDFLAGS@ | ||
176 | 122 | ||
177 | tests_eo_test_mixin_SOURCES = \ | 123 | tests_eo_test_mixin_SOURCES = \ |
178 | tests/eo/mixin/mixin_inherit.c \ | 124 | tests/eo/mixin/mixin_inherit.c \ |
@@ -188,32 +134,16 @@ tests/eo/mixin/mixin_mixin4.c \ | |||
188 | tests/eo/mixin/mixin_mixin4.h \ | 134 | tests/eo/mixin/mixin_mixin4.h \ |
189 | tests/eo/mixin/mixin_simple.c \ | 135 | tests/eo/mixin/mixin_simple.c \ |
190 | tests/eo/mixin/mixin_simple.h | 136 | tests/eo/mixin/mixin_simple.h |
191 | 137 | tests_eo_test_mixin_CPPFLAGS = @EO_CFLAGS@ | |
192 | tests_eo_test_mixin_CPPFLAGS = \ | 138 | tests_eo_test_mixin_LDADD = @USE_EO_LIBS@ |
193 | -I$(top_srcdir)/src/lib/eina \ | 139 | tests_eo_test_mixin_DEPENDENCIES = @USE_EO_INTERNAL_LIBS@ |
194 | -I$(top_builddir)/src/lib/eina \ | ||
195 | -I$(top_srcdir)/src/lib/eo \ | ||
196 | @CHECK_CFLAGS@ \ | ||
197 | @EO_CFLAGS@ | ||
198 | |||
199 | tests_eo_test_mixin_LDADD = \ | ||
200 | lib/eo/libeo.la \ | ||
201 | @EO_LDFLAGS@ | ||
202 | 140 | ||
203 | tests_eo_test_signals_SOURCES = \ | 141 | tests_eo_test_signals_SOURCES = \ |
204 | tests/eo/signals/signals_main.c \ | 142 | tests/eo/signals/signals_main.c \ |
205 | tests/eo/signals/signals_simple.c \ | 143 | tests/eo/signals/signals_simple.c \ |
206 | tests/eo/signals/signals_simple.h | 144 | tests/eo/signals/signals_simple.h |
207 | 145 | tests_eo_test_signals_CPPFLAGS = @EO_CFLAGS@ | |
208 | tests_eo_test_signals_CPPFLAGS = \ | 146 | tests_eo_test_signals_LDADD = @USE_EO_LIBS@ |
209 | -I$(top_srcdir)/src/lib/eina \ | 147 | tests_eo_test_signals_DEPENDENCIES = @USE_EO_INTERNAL_LIBS@ |
210 | -I$(top_builddir)/src/lib/eina \ | ||
211 | -I$(top_srcdir)/src/lib/eo \ | ||
212 | @CHECK_CFLAGS@ \ | ||
213 | @EO_CFLAGS@ | ||
214 | |||
215 | tests_eo_test_signals_LDADD = \ | ||
216 | lib/eo/libeo.la \ | ||
217 | @EO_LDFLAGS@ | ||
218 | 148 | ||
219 | EXTRA_DIST += tests/eo/eunit_tests.h | 149 | EXTRA_DIST += tests/eo/eunit_tests.h |
diff --git a/src/Makefile_Escape.am b/src/Makefile_Escape.am index e3934a2ab8..c9399c9c2e 100644 --- a/src/Makefile_Escape.am +++ b/src/Makefile_Escape.am | |||
@@ -19,9 +19,9 @@ lib/escape/escape_libgen.c \ | |||
19 | lib/escape/escape_mman.c \ | 19 | lib/escape/escape_mman.c \ |
20 | lib/escape/escape_unistd.c | 20 | lib/escape/escape_unistd.c |
21 | 21 | ||
22 | lib_escape_libescape_la_CPPFLAGS = \ | 22 | lib_escape_libescape_la_CPPFLAGS = @ESCAPE_CFLAGS@ |
23 | -I$(top_srcdir)/src/lib/escape | ||
24 | lib_escape_libescape_la_LIBADD = @ESCAPE_LIBS@ | 23 | lib_escape_libescape_la_LIBADD = @ESCAPE_LIBS@ |
24 | lib_escape_libescape_la_DEPENDENCIES = @ESCAPE_INTERNAL_LIBS@ | ||
25 | lib_escape_libescape_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 25 | lib_escape_libescape_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
26 | 26 | ||
27 | endif | 27 | endif |
diff --git a/src/Makefile_Ethumb.am b/src/Makefile_Ethumb.am index 3b0e15daae..b7a8552fa6 100644 --- a/src/Makefile_Ethumb.am +++ b/src/Makefile_Ethumb.am | |||
@@ -4,38 +4,6 @@ lib_LTLIBRARIES += \ | |||
4 | lib/ethumb/libethumb.la \ | 4 | lib/ethumb/libethumb.la \ |
5 | lib/ethumb/client/libethumb_client.la | 5 | lib/ethumb/client/libethumb_client.la |
6 | 6 | ||
7 | ETHUMB_COMMON_CPPFLAGS = \ | ||
8 | -I$(top_srcdir)/src/lib/eina \ | ||
9 | -I$(top_builddir)/src/lib/eina \ | ||
10 | -I$(top_srcdir)/src/lib/eo \ | ||
11 | -I$(top_builddir)/src/lib/eo \ | ||
12 | -I$(top_srcdir)/src/lib/ecore \ | ||
13 | -I$(top_builddir)/src/lib/ecore \ | ||
14 | -I$(top_srcdir)/src/lib/ecore_evas \ | ||
15 | -I$(top_builddir)/src/lib/ecore_evas \ | ||
16 | -I$(top_srcdir)/src/lib/ecore_file \ | ||
17 | -I$(top_builddir)/src/lib/ecore_file \ | ||
18 | -I$(top_srcdir)/src/lib/evas \ | ||
19 | -I$(top_builddir)/src/lib/evas \ | ||
20 | -I$(top_srcdir)/src/lib/edje \ | ||
21 | -I$(top_builddir)/src/lib/edje \ | ||
22 | -I$(top_srcdir)/src/lib/ethumb \ | ||
23 | -I$(top_builddir)/src/lib/ethumb \ | ||
24 | @EFL_COV_CFLAGS@ \ | ||
25 | @ETHUMB_CFLAGS@ \ | ||
26 | @USE_EVIL_CFLAGS@ | ||
27 | |||
28 | ETHUMB_COMMON_LDADD = \ | ||
29 | lib/eina/libeina.la \ | ||
30 | lib/eo/libeo.la \ | ||
31 | lib/ecore/libecore.la \ | ||
32 | lib/ecore_evas/libecore_evas.la \ | ||
33 | lib/ecore_file/libecore_file.la \ | ||
34 | lib/evas/libevas.la \ | ||
35 | lib/edje/libedje.la \ | ||
36 | @EFL_COV_LIBS@ \ | ||
37 | @USE_EVIL_LIBS@ | ||
38 | |||
39 | installed_ethumbmainheadersdir = $(includedir)/ethumb-@VMAJ@ | 7 | installed_ethumbmainheadersdir = $(includedir)/ethumb-@VMAJ@ |
40 | dist_installed_ethumbmainheaders_DATA = \ | 8 | dist_installed_ethumbmainheaders_DATA = \ |
41 | lib/ethumb/Ethumb.h \ | 9 | lib/ethumb/Ethumb.h \ |
@@ -49,38 +17,22 @@ lib/ethumb/md5.h \ | |||
49 | lib/ethumb/ethumb.c \ | 17 | lib/ethumb/ethumb.c \ |
50 | lib/ethumb/md5.c | 18 | lib/ethumb/md5.c |
51 | 19 | ||
52 | ETHUMB_COMMON_LIBADD = $(ETHUMB_COMMON_LDADD) @ETHUMB_LIBS@ | ||
53 | ETHUMB_COMMON_LDADD += @ETHUMB_LDFLAGS@ | ||
54 | ETHUMB_COMMON_USER_LIBADD = $(ETHUMB_COMMON_LIBADD) lib/ethumb/libethumb.la | ||
55 | ETHUMB_COMMON_USER_LDADD = $(ETHUMB_COMMON_LDADD) lib/ethumb/libethumb.la | ||
56 | |||
57 | lib_ethumb_libethumb_la_CPPFLAGS = \ | 20 | lib_ethumb_libethumb_la_CPPFLAGS = \ |
58 | $(ETHUMB_COMMON_CPPFLAGS) \ | ||
59 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 21 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
60 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 22 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
61 | -DPACKAGE_DATA_DIR=\"$(datadir)/ethumb\" \ | 23 | -DPACKAGE_DATA_DIR=\"$(datadir)/ethumb\" \ |
62 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ | 24 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
63 | -DEFL_ETHUMB_BUILD | 25 | @ETHUMB_CFLAGS@ |
64 | 26 | lib_ethumb_libethumb_la_LIBADD = @ETHUMB_LIBS@ | |
65 | lib_ethumb_libethumb_la_LIBADD = $(ETHUMB_COMMON_LIBADD) | 27 | lib_ethumb_libethumb_la_DEPENDENCIES = @ETHUMB_INTERNAL_LIBS@ |
66 | lib_ethumb_libethumb_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 28 | lib_ethumb_libethumb_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
67 | 29 | ||
68 | 30 | # TODO: fix directory! | |
69 | # libethumb_client.la | 31 | # libethumb_client.la |
70 | lib_ethumb_client_libethumb_client_la_SOURCES = \ | 32 | lib_ethumb_client_libethumb_client_la_SOURCES = lib/ethumb/client/ethumb_client.c |
71 | lib/ethumb/client/ethumb_client.c | 33 | lib_ethumb_client_libethumb_client_la_CPPFLAGS = @ETHUMB_CLIENT_CFLAGS@ |
72 | 34 | lib_ethumb_client_libethumb_client_la_LIBADD = @ETHUMB_CLIENT_LIBS@ | |
73 | lib_ethumb_client_libethumb_client_la_CPPFLAGS = \ | 35 | lib_ethumb_client_libethumb_client_la_DEPENDENCIES = @ETHUMB_CLIENT_INTERNAL_LIBS@ |
74 | $(ETHUMB_COMMON_CPPFLAGS) \ | ||
75 | -I$(top_srcdir)/src/lib/edbus \ | ||
76 | -I$(top_builddir)/src/lib/edbus \ | ||
77 | -I$(top_srcdir)/src/lib/ethumb/client \ | ||
78 | -I$(top_builddir)/src/lib/ethumb/client \ | ||
79 | -DEFL_ETHUMB_BUILD | ||
80 | |||
81 | lib_ethumb_client_libethumb_client_la_LIBADD = \ | ||
82 | $(ETHUMB_COMMON_USER_LIBADD) \ | ||
83 | lib/edbus/libedbus2.la | ||
84 | lib_ethumb_client_libethumb_client_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 36 | lib_ethumb_client_libethumb_client_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
85 | 37 | ||
86 | ## Modules | 38 | ## Modules |
@@ -91,21 +43,18 @@ ethumbmoduleemotion_LTLIBRARIES = modules/ethumb/emotion/module.la | |||
91 | modules_ethumb_emotion_module_la_SOURCES = \ | 43 | modules_ethumb_emotion_module_la_SOURCES = \ |
92 | modules/ethumb/emotion/emotion.c | 44 | modules/ethumb/emotion/emotion.c |
93 | modules_ethumb_emotion_module_la_CPPFLAGS = \ | 45 | modules_ethumb_emotion_module_la_CPPFLAGS = \ |
94 | $(ETHUMB_COMMON_CPPFLAGS) \ | ||
95 | -I$(top_srcdir)/src/lib/eet \ | ||
96 | -I$(top_builddir)/src/lib/eet \ | ||
97 | -I$(top_srcdir)/src/lib/emotion \ | ||
98 | -I$(top_builddir)/src/lib/emotion \ | ||
99 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 46 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
100 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 47 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
101 | -DPACKAGE_DATA_DIR=\"$(datadir)/ethumb\" \ | 48 | -DPACKAGE_DATA_DIR=\"$(datadir)/ethumb\" \ |
102 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" | 49 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
103 | 50 | @EMOTION_CFLAGS@ \ | |
51 | @ETHUMB_CFLAGS@ | ||
104 | modules_ethumb_emotion_module_la_LIBADD = \ | 52 | modules_ethumb_emotion_module_la_LIBADD = \ |
105 | $(ETHUMB_COMMON_USER_LIBADD) \ | 53 | @USE_EMOTION_LIBS@ \ |
106 | lib/eet/libeet.la \ | 54 | @USE_ETHUMB_LIBS@ |
107 | lib/emotion/libemotion.la | 55 | modules_ethumb_emotion_module_la_DEPENDENCIES = \ |
108 | 56 | @USE_EMOTION_INTERNAL_LIBS@ \ | |
57 | @USE_ETHUMB_INTERNAL_LIBS@ | ||
109 | modules_ethumb_emotion_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 58 | modules_ethumb_emotion_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
110 | modules_ethumb_emotion_module_la_LIBTOOLFLAGS = --tag=disable-static | 59 | modules_ethumb_emotion_module_la_LIBTOOLFLAGS = --tag=disable-static |
111 | 60 | ||
@@ -132,40 +81,33 @@ ethumbinternal_bin_PROGRAMS = \ | |||
132 | bin/ethumb/ethumbd_slave | 81 | bin/ethumb/ethumbd_slave |
133 | 82 | ||
134 | bin_ethumb_ethumb_SOURCES = bin/ethumb/ethumb.c | 83 | bin_ethumb_ethumb_SOURCES = bin/ethumb/ethumb.c |
135 | bin_ethumb_ethumb_CPPFLAGS = $(ETHUMB_COMMON_CPPFLAGS) | 84 | bin_ethumb_ethumb_CPPFLAGS = @ETHUMB_CFLAGS@ |
136 | bin_ethumb_ethumb_LDADD = $(ETHUMB_COMMON_USER_LDADD) | 85 | bin_ethumb_ethumb_LDADD = @USE_ETHUMB_LIBS@ |
86 | bin_ethumb_ethumb_DEPENDENCIES = @USE_ETHUMB_INTERNAL_LIBS@ | ||
137 | 87 | ||
138 | # TODO: review why ethumd (master) links to libethumb! shouldn't | 88 | # TODO: review why ethumd (master) links to libethumb! shouldn't |
139 | bin_ethumb_ethumbd_SOURCES = \ | 89 | bin_ethumb_ethumbd_SOURCES = \ |
140 | bin/ethumb/ethumbd_private.h \ | 90 | bin/ethumb/ethumbd_private.h \ |
141 | bin/ethumb/ethumbd.c | 91 | bin/ethumb/ethumbd.c |
142 | bin_ethumb_ethumbd_CPPFLAGS = \ | 92 | bin_ethumb_ethumbd_CPPFLAGS = \ |
143 | $(ETHUMB_COMMON_CPPFLAGS) \ | ||
144 | -I$(top_srcdir)/src/lib/edbus \ | ||
145 | -I$(top_builddir)/src/lib/edbus \ | ||
146 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 93 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
147 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 94 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
148 | -DPACKAGE_DATA_DIR=\"$(datadir)/ethumb\" \ | 95 | -DPACKAGE_DATA_DIR=\"$(datadir)/ethumb\" \ |
149 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" | 96 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
150 | bin_ethumb_ethumbd_LDADD = \ | 97 | @ETHUMB_CLIENT_CFLAGS@ |
151 | $(ETHUMB_COMMON_USER_LDADD) \ | 98 | bin_ethumb_ethumbd_LDADD = @USE_ETHUMB_CLIENT_LIBS@ |
152 | lib/edbus/libedbus2.la | 99 | bin_ethumb_ethumbd_DEPENDENCIES = @USE_ETHUMB_CLIENT_INTERNAL_LIBS@ |
153 | |||
154 | bin_ethumb_ethumbd_client_SOURCES = \ | ||
155 | bin/ethumb/ethumbd_client.c | ||
156 | bin_ethumb_ethumbd_client_CPPFLAGS = \ | ||
157 | $(ETHUMB_COMMON_CPPFLAGS) \ | ||
158 | -I$(top_srcdir)/src/lib/edbus \ | ||
159 | -I$(top_builddir)/src/lib/edbus \ | ||
160 | -I$(top_srcdir)/src/lib/ethumb/client \ | ||
161 | -I$(top_builddir)/src/lib/ethumb/client | ||
162 | bin_ethumb_ethumbd_client_LDADD = \ | ||
163 | $(ETHUMB_COMMON_USER_LDADD) \ | ||
164 | lib/ethumb/client/libethumb_client.la \ | ||
165 | lib/edbus/libedbus2.la | ||
166 | 100 | ||
101 | bin_ethumb_ethumbd_client_SOURCES = bin/ethumb/ethumbd_client.c | ||
102 | bin_ethumb_ethumbd_client_CPPFLAGS = @ETHUMB_CLIENT_CFLAGS@ | ||
103 | bin_ethumb_ethumbd_client_LDADD = @USE_ETHUMB_CLIENT_LIBS@ | ||
104 | bin_ethumb_ethumbd_client_DEPENDENCIES = @USE_ETHUMB_CLIENT_INTERNAL_LIBS@ | ||
105 | |||
106 | # slave does not use dbus, it's a simple ethumb application | ||
167 | bin_ethumb_ethumbd_slave_SOURCES = \ | 107 | bin_ethumb_ethumbd_slave_SOURCES = \ |
168 | bin/ethumb/ethumbd_private.h \ | 108 | bin/ethumb/ethumbd_private.h \ |
169 | bin/ethumb/ethumbd_slave.c | 109 | bin/ethumb/ethumbd_slave.c |
170 | bin_ethumb_ethumbd_slave_CPPFLAGS = $(ETHUMB_COMMON_CPPFLAGS) | 110 | bin_ethumb_ethumbd_slave_CPPFLAGS = @ETHUMB_CFLAGS@ |
171 | bin_ethumb_ethumbd_slave_LDADD = $(ETHUMB_COMMON_USER_LDADD) | 111 | bin_ethumb_ethumbd_slave_LDADD = @USE_ETHUMB_LIBS@ |
112 | bin_ethumb_ethumbd_slave_DEPENDENCIES = @USE_ETHUMB_INTERNAL_LIBS@ | ||
113 | |||
diff --git a/src/Makefile_Evas.am b/src/Makefile_Evas.am index ac6ba0924b..a180b93128 100644 --- a/src/Makefile_Evas.am +++ b/src/Makefile_Evas.am | |||
@@ -190,26 +190,18 @@ lib/evas/common/evas_text_utils.h \ | |||
190 | lib/evas/common/evas_font_ot.h | 190 | lib/evas/common/evas_font_ot.h |
191 | 191 | ||
192 | lib_evas_libevas_la_CPPFLAGS = \ | 192 | lib_evas_libevas_la_CPPFLAGS = \ |
193 | -I$(top_srcdir)/src/lib/evas \ | 193 | -I$(top_srcdir)/src/lib/evas/common \ |
194 | -I$(top_srcdir)/src/lib/evas/include \ | ||
195 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 194 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
196 | -I$(top_srcdir)/src/lib/evas/file \ | 195 | -I$(top_srcdir)/src/lib/evas/file \ |
196 | -I$(top_srcdir)/src/lib/evas/include \ | ||
197 | -I$(top_srcdir)/src/static_libs/libunibreak \ | 197 | -I$(top_srcdir)/src/static_libs/libunibreak \ |
198 | -I$(top_srcdir)/src/lib/evas/common \ | ||
199 | -I$(top_srcdir)/src/lib/eina \ | ||
200 | -I$(top_builddir)/src/lib/eina \ | ||
201 | -I$(top_srcdir)/src/lib/eo \ | ||
202 | -I$(top_srcdir)/src/lib/eet \ | ||
203 | -DEFL_EVAS_BUILD \ | ||
204 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | 198 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ |
205 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | 199 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ |
206 | -DPACKAGE_DATA_DIR=\"$(datadir)/evas\" \ | 200 | -DPACKAGE_DATA_DIR=\"$(datadir)/evas\" \ |
207 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ | 201 | -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ |
208 | @EFL_COV_CFLAGS@ \ | ||
209 | @EVAS_CFLAGS@ \ | 202 | @EVAS_CFLAGS@ \ |
210 | @VALGRIND_CFLAGS@ \ | 203 | @VALGRIND_CFLAGS@ \ |
211 | @ALTIVEC_CFLAGS@ \ | 204 | @ALTIVEC_CFLAGS@ |
212 | @USE_EVIL_CFLAGS@ | ||
213 | 205 | ||
214 | # SSE3 | 206 | # SSE3 |
215 | noinst_LTLIBRARIES += lib/evas/common/libevas_op_blend_sse3.la | 207 | noinst_LTLIBRARIES += lib/evas/common/libevas_op_blend_sse3.la |
@@ -219,20 +211,19 @@ lib/evas/common/evas_op_blend/op_blend_master_sse3.c | |||
219 | 211 | ||
220 | lib_evas_common_libevas_op_blend_sse3_la_CPPFLAGS = \ | 212 | lib_evas_common_libevas_op_blend_sse3_la_CPPFLAGS = \ |
221 | $(lib_evas_libevas_la_CPPFLAGS) \ | 213 | $(lib_evas_libevas_la_CPPFLAGS) \ |
222 | @EFL_COV_CFLAGS@ \ | ||
223 | @SSE3_CFLAGS@ | 214 | @SSE3_CFLAGS@ |
224 | 215 | ||
225 | lib_evas_common_libevas_op_blend_sse3_la_LIBADD = @EFL_COV_LIBS@ | 216 | lib_evas_common_libevas_op_blend_sse3_la_LIBADD = @EVAS_LIBS@ |
217 | lib_evas_common_libevas_op_blend_sse3_la_DEPENDENCIES = @EVAS_INTERNAL_LIBS@ | ||
226 | 218 | ||
227 | lib_evas_libevas_la_CXXFLAGS = | 219 | lib_evas_libevas_la_CXXFLAGS = |
228 | 220 | ||
229 | lib_evas_libevas_la_LIBADD = \ | 221 | lib_evas_libevas_la_LIBADD = \ |
230 | lib/evas/common/libevas_op_blend_sse3.la \ | 222 | lib/evas/common/libevas_op_blend_sse3.la \ |
231 | lib/eina/libeina.la \ | 223 | @EVAS_LIBS@ |
232 | lib/eet/libeet.la \ | 224 | lib_evas_libevas_la_DEPENDENCIES = \ |
233 | lib/eo/libeo.la \ | 225 | lib/evas/common/libevas_op_blend_sse3.la \ |
234 | @EVAS_LIBS@ \ | 226 | @EVAS_INTERNAL_LIBS@ |
235 | @EFL_COV_LIBS@ | ||
236 | 227 | ||
237 | lib_evas_libevas_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 228 | lib_evas_libevas_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
238 | 229 | ||
@@ -369,15 +360,11 @@ enginesoftwaregenericpkgdir = $(libdir)/evas/modules/engines/software_generic/$( | |||
369 | enginesoftwaregenericpkg_LTLIBRARIES = modules/evas/engines/software_generic/module.la | 360 | enginesoftwaregenericpkg_LTLIBRARIES = modules/evas/engines/software_generic/module.la |
370 | modules_evas_engines_software_generic_module_la_SOURCES = modules/evas/engines/software_generic/evas_engine.c | 361 | modules_evas_engines_software_generic_module_la_SOURCES = modules/evas/engines/software_generic/evas_engine.c |
371 | modules_evas_engines_software_generic_module_la_CPPFLAGS = \ | 362 | modules_evas_engines_software_generic_module_la_CPPFLAGS = \ |
372 | -I$(top_srcdir)/src/lib/eina \ | ||
373 | -I$(top_builddir)/src/lib/eina \ | ||
374 | -I$(top_srcdir)/src/lib/eo \ | ||
375 | -I$(top_srcdir)/src/lib/evas \ | ||
376 | -I$(top_srcdir)/src/lib/evas/include \ | 363 | -I$(top_srcdir)/src/lib/evas/include \ |
377 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 364 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
378 | -DEFL_EVAS_BUILD \ | ||
379 | @EVAS_CFLAGS@ | 365 | @EVAS_CFLAGS@ |
380 | modules_evas_engines_software_generic_module_la_LIBADD = lib/evas/libevas.la | 366 | modules_evas_engines_software_generic_module_la_LIBADD = @USE_EVAS_LIBS@ |
367 | modules_evas_engines_software_generic_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
381 | modules_evas_engines_software_generic_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 368 | modules_evas_engines_software_generic_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
382 | modules_evas_engines_software_generic_module_la_LIBTOOLFLAGS = --tag=disable-static | 369 | modules_evas_engines_software_generic_module_la_LIBTOOLFLAGS = --tag=disable-static |
383 | endif | 370 | endif |
@@ -395,16 +382,11 @@ enginebufferpkgdir = $(libdir)/evas/modules/engines/buffer/$(MODULE_ARCH) | |||
395 | enginebufferpkg_LTLIBRARIES = modules/evas/engines/buffer/module.la | 382 | enginebufferpkg_LTLIBRARIES = modules/evas/engines/buffer/module.la |
396 | modules_evas_engines_buffer_module_la_SOURCES = $(BUFFER_SOURCES) | 383 | modules_evas_engines_buffer_module_la_SOURCES = $(BUFFER_SOURCES) |
397 | modules_evas_engines_buffer_module_la_CPPFLAGS = \ | 384 | modules_evas_engines_buffer_module_la_CPPFLAGS = \ |
398 | -I$(top_srcdir)/src/lib/eina \ | ||
399 | -I$(top_builddir)/src/lib/eina \ | ||
400 | -I$(top_srcdir)/src/lib/eo \ | ||
401 | -I$(top_srcdir)/src/lib/evas \ | ||
402 | -I$(top_srcdir)/src/lib/evas/include \ | 385 | -I$(top_srcdir)/src/lib/evas/include \ |
403 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 386 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
404 | -DEFL_EVAS_BUILD \ | 387 | @EVAS_CFLAGS@ |
405 | @EVAS_CFLAGS@ \ | 388 | modules_evas_engines_buffer_module_la_LIBADD = @USE_EVAS_LIBS@ |
406 | @USE_EVIL_CFLAGS@ | 389 | modules_evas_engines_buffer_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ |
407 | modules_evas_engines_buffer_module_la_LIBADD = lib/evas/libevas.la | ||
408 | modules_evas_engines_buffer_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 390 | modules_evas_engines_buffer_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
409 | modules_evas_engines_buffer_module_la_LIBTOOLFLAGS = --tag=disable-static | 391 | modules_evas_engines_buffer_module_la_LIBTOOLFLAGS = --tag=disable-static |
410 | endif | 392 | endif |
@@ -427,17 +409,14 @@ enginefbpkgdir = $(libdir)/evas/modules/engines/fb/$(MODULE_ARCH) | |||
427 | enginefbpkg_LTLIBRARIES = modules/evas/engines/fb/module.la | 409 | enginefbpkg_LTLIBRARIES = modules/evas/engines/fb/module.la |
428 | modules_evas_engines_fb_module_la_SOURCES = $(FB_SOURCES) | 410 | modules_evas_engines_fb_module_la_SOURCES = $(FB_SOURCES) |
429 | modules_evas_engines_fb_module_la_CPPFLAGS = \ | 411 | modules_evas_engines_fb_module_la_CPPFLAGS = \ |
430 | -I$(top_srcdir)/src/lib/eina \ | ||
431 | -I$(top_builddir)/src/lib/eina \ | ||
432 | -I$(top_srcdir)/src/lib/eo \ | ||
433 | -I$(top_srcdir)/src/lib/evas \ | ||
434 | -I$(top_srcdir)/src/lib/evas/include \ | 412 | -I$(top_srcdir)/src/lib/evas/include \ |
435 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 413 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
436 | @evas_engine_fb_cflags@ \ | 414 | @evas_engine_fb_cflags@ \ |
437 | @EVAS_CFLAGS@ | 415 | @EVAS_CFLAGS@ |
438 | modules_evas_engines_fb_module_la_LIBADD = \ | 416 | modules_evas_engines_fb_module_la_LIBADD = \ |
439 | lib/evas/libevas.la \ | 417 | @USE_EVAS_LIBS@ \ |
440 | @evas_engine_fb_libs@ | 418 | @evas_engine_fb_libs@ |
419 | modules_evas_engines_fb_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
441 | modules_evas_engines_fb_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 420 | modules_evas_engines_fb_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
442 | modules_evas_engines_fb_module_la_LIBTOOLFLAGS = --tag=disable-static | 421 | modules_evas_engines_fb_module_la_LIBTOOLFLAGS = --tag=disable-static |
443 | endif | 422 | endif |
@@ -544,21 +523,14 @@ else | |||
544 | noinst_LTLIBRARIES += modules/evas/engines/gl_common/libevas_engine_gl_common.la | 523 | noinst_LTLIBRARIES += modules/evas/engines/gl_common/libevas_engine_gl_common.la |
545 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_SOURCES = $(GL_COMMON_SOURCES) | 524 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_SOURCES = $(GL_COMMON_SOURCES) |
546 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_CPPFLAGS = \ | 525 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_CPPFLAGS = \ |
547 | -I$(top_srcdir)/src/lib/eina \ | ||
548 | -I$(top_builddir)/src/lib/eina \ | ||
549 | -I$(top_srcdir)/src/lib/eo \ | ||
550 | -I$(top_srcdir)/src/lib/eet \ | ||
551 | -I$(top_srcdir)/src/lib/evas \ | ||
552 | -I$(top_srcdir)/src/lib/evas/include \ | 526 | -I$(top_srcdir)/src/lib/evas/include \ |
553 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 527 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
554 | -DEFL_EVAS_BUILD \ | ||
555 | @EVAS_CFLAGS@ | 528 | @EVAS_CFLAGS@ |
556 | if BUILD_ENGINE_GL_X11 | 529 | if BUILD_ENGINE_GL_X11 |
557 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_CPPFLAGS += @evas_engine_gl_xlib_cflags@ @evas_engine_gl_xcb_cflags@ | 530 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_CPPFLAGS += @evas_engine_gl_xlib_cflags@ @evas_engine_gl_xcb_cflags@ |
558 | endif | 531 | endif |
559 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_LIBADD = \ | 532 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_LIBADD = @USE_EVAS_LIBS@ |
560 | lib/eet/libeet.la \ | 533 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ |
561 | lib/evas/libevas.la | ||
562 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 534 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
563 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_LIBTOOLFLAGS = --tag=disable-static | 535 | modules_evas_engines_gl_common_libevas_engine_gl_common_la_LIBTOOLFLAGS = --tag=disable-static |
564 | endif | 536 | endif |
@@ -575,32 +547,26 @@ lib_evas_libevas_la_SOURCES += $(GL_COCOA_SOURCES) | |||
575 | lib_evas_libevas_la_CPPFLAGS += \ | 547 | lib_evas_libevas_la_CPPFLAGS += \ |
576 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ | 548 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ |
577 | @evas_engine_gl_cocoa_cflags@ | 549 | @evas_engine_gl_cocoa_cflags@ |
578 | lib_evas_libevas_la_LIBADD += \ | 550 | lib_evas_libevas_la_LIBADD += @evas_engine_gl_cocoa_libs@ |
579 | @evas_engine_gl_cocoa_libs@ | ||
580 | else | 551 | else |
581 | engineglcocoapkgdir = $(libdir)/evas/modules/engines/gl_cocoa/$(MODULE_ARCH) | 552 | engineglcocoapkgdir = $(libdir)/evas/modules/engines/gl_cocoa/$(MODULE_ARCH) |
582 | engineglcocoapkg_LTLIBRARIES = modules/evas/engines/gl_cocoa/module.la | 553 | engineglcocoapkg_LTLIBRARIES = modules/evas/engines/gl_cocoa/module.la |
583 | modules_evas_engines_gl_cocoa_module_la_SOURCES = $(GL_COCOA_SOURCES) | 554 | modules_evas_engines_gl_cocoa_module_la_SOURCES = $(GL_COCOA_SOURCES) |
584 | modules_evas_engines_gl_cocoa_module_la_CPPFLAGS = \ | 555 | modules_evas_engines_gl_cocoa_module_la_CPPFLAGS = \ |
585 | -I$(top_srcdir)/src/lib/eina \ | ||
586 | -I$(top_builddir)/src/lib/eina \ | ||
587 | -I$(top_srcdir)/src/lib/eo \ | ||
588 | -I$(top_srcdir)/src/lib/eet \ | ||
589 | -I$(top_srcdir)/src/lib/evas \ | ||
590 | -I$(top_srcdir)/src/lib/evas/include \ | 556 | -I$(top_srcdir)/src/lib/evas/include \ |
591 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 557 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
592 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ | 558 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ |
593 | @evas_engine_gl_cocoa_cflags@ \ | 559 | @EVAS_CFLAGS@ \ |
594 | @EVAS_CFLAGS@ | 560 | @evas_engine_gl_cocoa_cflags@ |
595 | modules_evas_engines_gl_cocoa_module_la_LIBADD = | 561 | modules_evas_engines_gl_cocoa_module_la_LIBADD = |
596 | if ! EVAS_STATIC_BUILD_GL_COMMON | 562 | if ! EVAS_STATIC_BUILD_GL_COMMON |
597 | modules_evas_engines_gl_cocoa_module_la_LIBADD += \ | 563 | modules_evas_engines_gl_cocoa_module_la_LIBADD += \ |
598 | modules/evas/engines/gl_common/libevas_engine_gl_common.la | 564 | modules/evas/engines/gl_common/libevas_engine_gl_common.la |
599 | endif | 565 | endif |
600 | modules_evas_engines_gl_cocoa_module_la_LIBADD += \ | 566 | modules_evas_engines_gl_cocoa_module_la_LIBADD += \ |
601 | lib/eet/libeet.la \ | 567 | @USE_EVAS_LIBS@ \ |
602 | lib/evas/libevas.la \ | ||
603 | @evas_engine_gl_cocoa_libs@ | 568 | @evas_engine_gl_cocoa_libs@ |
569 | modules_evas_engines_gl_cocoa_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
604 | modules_evas_engines_gl_cocoa_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 570 | modules_evas_engines_gl_cocoa_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
605 | modules_evas_engines_gl_cocoa_module_la_LIBTOOLFLAGS = --tag=disable-static | 571 | modules_evas_engines_gl_cocoa_module_la_LIBTOOLFLAGS = --tag=disable-static |
606 | endif | 572 | endif |
@@ -616,31 +582,28 @@ lib_evas_libevas_la_SOURCES += $(GL_SDL_SOURCES) | |||
616 | lib_evas_libevas_la_CPPFLAGS += \ | 582 | lib_evas_libevas_la_CPPFLAGS += \ |
617 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ | 583 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ |
618 | @evas_engine_gl_sdl_cflags@ | 584 | @evas_engine_gl_sdl_cflags@ |
619 | lib_evas_libevas_la_LIBADD += \ | 585 | lib_evas_libevas_la_LIBADD += @evas_engine_gl_sdl_libs@ |
620 | @evas_engine_gl_sdl_libs@ | ||
621 | else | 586 | else |
622 | engineglsdlpkgdir = $(libdir)/evas/modules/engines/gl_sdl/$(MODULE_ARCH) | 587 | engineglsdlpkgdir = $(libdir)/evas/modules/engines/gl_sdl/$(MODULE_ARCH) |
623 | engineglsdlpkg_LTLIBRARIES = modules/evas/engines/gl_sdl/module.la | 588 | engineglsdlpkg_LTLIBRARIES = modules/evas/engines/gl_sdl/module.la |
624 | modules_evas_engines_gl_sdl_module_la_SOURCES = $(GL_SDL_SOURCES) | 589 | modules_evas_engines_gl_sdl_module_la_SOURCES = $(GL_SDL_SOURCES) |
625 | modules_evas_engines_gl_sdl_module_la_CPPFLAGS = \ | 590 | modules_evas_engines_gl_sdl_module_la_CPPFLAGS = \ |
626 | -I$(top_srcdir)/src/lib/eina \ | ||
627 | -I$(top_builddir)/src/lib/eina \ | ||
628 | -I$(top_srcdir)/src/lib/eo \ | ||
629 | -I$(top_srcdir)/src/lib/eet \ | ||
630 | -I$(top_srcdir)/src/lib/evas \ | ||
631 | -I$(top_srcdir)/src/lib/evas/include \ | 591 | -I$(top_srcdir)/src/lib/evas/include \ |
632 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 592 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
633 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ | 593 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ |
634 | @evas_engine_gl_sdl_cflags@ \ | 594 | @EVAS_CFLAGS@ \ |
635 | @EVAS_CFLAGS@ | 595 | @evas_engine_gl_sdl_cflags@ |
636 | modules_evas_engines_gl_sdl_module_la_LIBADD = | 596 | modules_evas_engines_gl_sdl_module_la_LIBADD = |
637 | if ! EVAS_STATIC_BUILD_GL_COMMON | 597 | if ! EVAS_STATIC_BUILD_GL_COMMON |
638 | modules_evas_engines_gl_sdl_module_la_LIBADD += \ | 598 | modules_evas_engines_gl_sdl_module_la_LIBADD += \ |
639 | modules/evas/engines/gl_common/libevas_engine_gl_common.la | 599 | modules/evas/engines/gl_common/libevas_engine_gl_common.la |
640 | endif | 600 | endif |
641 | modules_evas_engines_gl_sdl_module_la_LIBADD += \ | 601 | modules_evas_engines_gl_sdl_module_la_LIBADD += \ |
642 | lib/evas/libevas.la \ | 602 | @USE_EVAS_LIBS@ \ |
643 | @evas_engine_gl_sdl_libs@ | 603 | @evas_engine_gl_sdl_libs@ |
604 | modules_evas_engines_gl_sdl_module_la_DEPENDENCIES = \ | ||
605 | @USE_EVAS_INTERNAL_LIBS@ \ | ||
606 | modules/evas/engines/gl_common/libevas_engine_gl_common.la | ||
644 | modules_evas_engines_gl_sdl_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 607 | modules_evas_engines_gl_sdl_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
645 | modules_evas_engines_gl_sdl_module_la_LIBTOOLFLAGS = --tag=disable-static | 608 | modules_evas_engines_gl_sdl_module_la_LIBTOOLFLAGS = --tag=disable-static |
646 | endif | 609 | endif |
@@ -664,27 +627,24 @@ engineglx11pkgdir = $(libdir)/evas/modules/engines/gl_x11/$(MODULE_ARCH) | |||
664 | engineglx11pkg_LTLIBRARIES = modules/evas/engines/gl_x11/module.la | 627 | engineglx11pkg_LTLIBRARIES = modules/evas/engines/gl_x11/module.la |
665 | modules_evas_engines_gl_x11_module_la_SOURCES = $(GL_X11_SOURCES) | 628 | modules_evas_engines_gl_x11_module_la_SOURCES = $(GL_X11_SOURCES) |
666 | modules_evas_engines_gl_x11_module_la_CPPFLAGS = \ | 629 | modules_evas_engines_gl_x11_module_la_CPPFLAGS = \ |
667 | -I$(top_srcdir)/src/lib/eina \ | ||
668 | -I$(top_builddir)/src/lib/eina \ | ||
669 | -I$(top_srcdir)/src/lib/eo \ | ||
670 | -I$(top_srcdir)/src/lib/eet \ | ||
671 | -I$(top_srcdir)/src/lib/evas \ | ||
672 | -I$(top_srcdir)/src/lib/evas/include \ | 630 | -I$(top_srcdir)/src/lib/evas/include \ |
673 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 631 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
674 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ | 632 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ |
633 | @EVAS_CFLAGS@ \ | ||
675 | @evas_engine_gl_xlib_cflags@ \ | 634 | @evas_engine_gl_xlib_cflags@ \ |
676 | @evas_engine_gl_xcb_cflags@ \ | 635 | @evas_engine_gl_xcb_cflags@ |
677 | @EVAS_CFLAGS@ | ||
678 | modules_evas_engines_gl_x11_module_la_LIBADD = | 636 | modules_evas_engines_gl_x11_module_la_LIBADD = |
679 | if ! EVAS_STATIC_BUILD_GL_COMMON | 637 | if ! EVAS_STATIC_BUILD_GL_COMMON |
680 | modules_evas_engines_gl_x11_module_la_LIBADD += \ | 638 | modules_evas_engines_gl_x11_module_la_LIBADD += \ |
681 | modules/evas/engines/gl_common/libevas_engine_gl_common.la | 639 | modules/evas/engines/gl_common/libevas_engine_gl_common.la |
682 | endif | 640 | endif |
683 | modules_evas_engines_gl_x11_module_la_LIBADD += \ | 641 | modules_evas_engines_gl_x11_module_la_LIBADD += \ |
684 | lib/eet/libeet.la \ | 642 | @USE_EVAS_LIBS@ \ |
685 | lib/evas/libevas.la \ | ||
686 | @evas_engine_gl_xlib_libs@ \ | 643 | @evas_engine_gl_xlib_libs@ \ |
687 | @evas_engine_gl_xcb_libs@ | 644 | @evas_engine_gl_xcb_libs@ |
645 | modules_evas_engines_gl_x11_module_la_DEPENDENCIES = \ | ||
646 | @USE_EVAS_INTERNAL_LIBS@ \ | ||
647 | modules/evas/engines/gl_common/libevas_engine_gl_common.la | ||
688 | modules_evas_engines_gl_x11_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 648 | modules_evas_engines_gl_x11_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
689 | modules_evas_engines_gl_x11_module_la_LIBTOOLFLAGS = --tag=disable-static | 649 | modules_evas_engines_gl_x11_module_la_LIBTOOLFLAGS = --tag=disable-static |
690 | endif | 650 | endif |
@@ -706,17 +666,14 @@ enginepsl1ghtpkgdir = $(libdir)/evas/modules/engines/psl1ght/$(MODULE_ARCH) | |||
706 | enginepsl1ghtpkg_LTLIBRARIES = modules/evas/engines/psl1ght/module.la | 666 | enginepsl1ghtpkg_LTLIBRARIES = modules/evas/engines/psl1ght/module.la |
707 | modules_evas_engines_psl1ght_module_la_SOURCES = $(PSL1GHT_SOURCES) | 667 | modules_evas_engines_psl1ght_module_la_SOURCES = $(PSL1GHT_SOURCES) |
708 | modules_evas_engines_psl1ght_module_la_CPPFLAGS = \ | 668 | modules_evas_engines_psl1ght_module_la_CPPFLAGS = \ |
709 | -I$(top_srcdir)/src/lib/eina \ | ||
710 | -I$(top_builddir)/src/lib/eina \ | ||
711 | -I$(top_srcdir)/src/lib/eo \ | ||
712 | -I$(top_srcdir)/src/lib/evas \ | ||
713 | -I$(top_srcdir)/src/lib/evas/include \ | 669 | -I$(top_srcdir)/src/lib/evas/include \ |
714 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 670 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
715 | @evas_engine_psl1ght_cflags@ \ | 671 | @EVAS_CFLAGS@ \ |
716 | @EVAS_CFLAGS@ | 672 | @evas_engine_psl1ght_cflags@ |
717 | modules_evas_engines_psl1ght_module_la_LIBADD = \ | 673 | modules_evas_engines_psl1ght_module_la_LIBADD = \ |
718 | lib/evas/libevas.la \ | 674 | @USE_EVAS_LIBS@ \ |
719 | @evas_engine_psl1ght_libs@ | 675 | @evas_engine_psl1ght_libs@ |
676 | modules_evas_engines_psl1ght_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
720 | modules_evas_engines_psl1ght_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 677 | modules_evas_engines_psl1ght_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
721 | modules_evas_engines_psl1ght_module_la_LIBTOOLFLAGS = --tag=disable-static | 678 | modules_evas_engines_psl1ght_module_la_LIBTOOLFLAGS = --tag=disable-static |
722 | endif | 679 | endif |
@@ -740,20 +697,15 @@ enginesoftwareddrawpkgdir = $(libdir)/evas/modules/engines/software_ddraw/$(MODU | |||
740 | enginesoftwareddrawpkg_LTLIBRARIES = modules/evas/engines/software_ddraw/module.la | 697 | enginesoftwareddrawpkg_LTLIBRARIES = modules/evas/engines/software_ddraw/module.la |
741 | modules_evas_engines_software_ddraw_module_la_SOURCES = $(SOFTWARE_DDRAW_SOURCES) | 698 | modules_evas_engines_software_ddraw_module_la_SOURCES = $(SOFTWARE_DDRAW_SOURCES) |
742 | modules_evas_engines_software_ddraw_module_la_CPPFLAGS = \ | 699 | modules_evas_engines_software_ddraw_module_la_CPPFLAGS = \ |
743 | -I$(top_srcdir)/src/lib/eina \ | ||
744 | -I$(top_builddir)/src/lib/eina \ | ||
745 | -I$(top_srcdir)/src/lib/eo \ | ||
746 | -I$(top_srcdir)/src/lib/evas \ | ||
747 | -I$(top_srcdir)/src/lib/evas/include \ | 700 | -I$(top_srcdir)/src/lib/evas/include \ |
748 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 701 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
749 | -DEFL_EVAS_BUILD \ | ||
750 | @evas_engine_software_ddraw_cflags@ \ | ||
751 | @EVAS_CFLAGS@ \ | 702 | @EVAS_CFLAGS@ \ |
752 | @USE_EVIL_CFLAGS@ | 703 | @evas_engine_software_ddraw_cflags@ |
753 | modules_evas_engines_software_ddraw_module_la_CXXFLAGS = -fno-rtti -fno-exceptions | 704 | modules_evas_engines_software_ddraw_module_la_CXXFLAGS = -fno-rtti -fno-exceptions |
754 | modules_evas_engines_software_ddraw_module_la_LIBADD = \ | 705 | modules_evas_engines_software_ddraw_module_la_LIBADD = \ |
755 | lib/evas/libevas.la \ | 706 | @USE_EVAS_LIBS@ \ |
756 | @evas_engine_software_ddraw_libs@ | 707 | @evas_engine_software_ddraw_libs@ |
708 | modules_evas_engines_software_ddraw_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
757 | modules_evas_engines_software_ddraw_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 709 | modules_evas_engines_software_ddraw_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
758 | modules_evas_engines_software_ddraw_module_la_LIBTOOLFLAGS = --tag=disable-static | 710 | modules_evas_engines_software_ddraw_module_la_LIBTOOLFLAGS = --tag=disable-static |
759 | endif | 711 | endif |
@@ -776,19 +728,14 @@ enginesoftwaregdipkgdir = $(libdir)/evas/modules/engines/software_gdi/$(MODULE_A | |||
776 | enginesoftwaregdipkg_LTLIBRARIES = modules/evas/engines/software_gdi/module.la | 728 | enginesoftwaregdipkg_LTLIBRARIES = modules/evas/engines/software_gdi/module.la |
777 | modules_evas_engines_software_gdi_module_la_SOURCES = $(SOFTWARE_GDI_SOURCES) | 729 | modules_evas_engines_software_gdi_module_la_SOURCES = $(SOFTWARE_GDI_SOURCES) |
778 | modules_evas_engines_software_gdi_module_la_CPPFLAGS = \ | 730 | modules_evas_engines_software_gdi_module_la_CPPFLAGS = \ |
779 | -I$(top_srcdir)/src/lib/eina \ | ||
780 | -I$(top_builddir)/src/lib/eina \ | ||
781 | -I$(top_srcdir)/src/lib/eo \ | ||
782 | -I$(top_srcdir)/src/lib/evas \ | ||
783 | -I$(top_srcdir)/src/lib/evas/include \ | 731 | -I$(top_srcdir)/src/lib/evas/include \ |
784 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 732 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
785 | -DEFL_EVAS_BUILD \ | ||
786 | @evas_engine_software_gdi_cflags@ \ | ||
787 | @EVAS_CFLAGS@ \ | 733 | @EVAS_CFLAGS@ \ |
788 | @USE_EVIL_CFLAGS@ | 734 | @evas_engine_software_gdi_cflags@ |
789 | modules_evas_engines_software_gdi_module_la_LIBADD = \ | 735 | modules_evas_engines_software_gdi_module_la_LIBADD = \ |
790 | lib/evas/libevas.la \ | 736 | @USE_EVAS_LIBS@ \ |
791 | @evas_engine_software_gdi_libs@ | 737 | @evas_engine_software_gdi_libs@ |
738 | modules_evas_engines_software_gdi_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
792 | modules_evas_engines_software_gdi_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 739 | modules_evas_engines_software_gdi_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
793 | modules_evas_engines_software_gdi_module_la_LIBTOOLFLAGS = --tag=disable-static | 740 | modules_evas_engines_software_gdi_module_la_LIBTOOLFLAGS = --tag=disable-static |
794 | endif | 741 | endif |
@@ -802,10 +749,6 @@ modules/evas/engines/software_x11/evas_engine.h \ | |||
802 | modules/evas/engines/software_x11/evas_x_egl.c \ | 749 | modules/evas/engines/software_x11/evas_x_egl.c \ |
803 | modules/evas/engines/software_x11/evas_x_egl.h | 750 | modules/evas/engines/software_x11/evas_x_egl.h |
804 | SOFTWARE_X11_CPPFLAGS = \ | 751 | SOFTWARE_X11_CPPFLAGS = \ |
805 | -I$(top_srcdir)/src/lib/eina \ | ||
806 | -I$(top_builddir)/src/lib/eina \ | ||
807 | -I$(top_srcdir)/src/lib/eo \ | ||
808 | -I$(top_srcdir)/src/lib/evas \ | ||
809 | -I$(top_srcdir)/src/lib/evas/include \ | 752 | -I$(top_srcdir)/src/lib/evas/include \ |
810 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 753 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
811 | @EVAS_CFLAGS@ | 754 | @EVAS_CFLAGS@ |
@@ -849,7 +792,8 @@ enginesoftwarex11pkgdir = $(libdir)/evas/modules/engines/software_x11/$(MODULE_A | |||
849 | enginesoftwarex11pkg_LTLIBRARIES = modules/evas/engines/software_x11/module.la | 792 | enginesoftwarex11pkg_LTLIBRARIES = modules/evas/engines/software_x11/module.la |
850 | modules_evas_engines_software_x11_module_la_SOURCES = $(SOFTWARE_X11_SOURCES) | 793 | modules_evas_engines_software_x11_module_la_SOURCES = $(SOFTWARE_X11_SOURCES) |
851 | modules_evas_engines_software_x11_module_la_CPPFLAGS = $(SOFTWARE_X11_CPPFLAGS) | 794 | modules_evas_engines_software_x11_module_la_CPPFLAGS = $(SOFTWARE_X11_CPPFLAGS) |
852 | modules_evas_engines_software_x11_module_la_LIBADD = lib/evas/libevas.la $(SOFTWARE_X11_LIBADD) | 795 | modules_evas_engines_software_x11_module_la_LIBADD = @USE_EVAS_LIBS@ $(SOFTWARE_X11_LIBADD) |
796 | modules_evas_engines_software_x11_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
853 | modules_evas_engines_software_x11_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 797 | modules_evas_engines_software_x11_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
854 | modules_evas_engines_software_x11_module_la_LIBTOOLFLAGS = --tag=disable-static | 798 | modules_evas_engines_software_x11_module_la_LIBTOOLFLAGS = --tag=disable-static |
855 | endif | 799 | endif |
@@ -872,21 +816,18 @@ enginewaylandeglpkgdir = $(libdir)/evas/modules/engines/wayland_egl/$(MODULE_ARC | |||
872 | enginewaylandeglpkg_LTLIBRARIES = modules/evas/engines/wayland_egl/module.la | 816 | enginewaylandeglpkg_LTLIBRARIES = modules/evas/engines/wayland_egl/module.la |
873 | modules_evas_engines_wayland_egl_module_la_SOURCES = $(WAYLAND_EGL_SOURCES) | 817 | modules_evas_engines_wayland_egl_module_la_SOURCES = $(WAYLAND_EGL_SOURCES) |
874 | modules_evas_engines_wayland_egl_module_la_CPPFLAGS = \ | 818 | modules_evas_engines_wayland_egl_module_la_CPPFLAGS = \ |
875 | -I$(top_srcdir)/src/lib/eina \ | ||
876 | -I$(top_builddir)/src/lib/eina \ | ||
877 | -I$(top_srcdir)/src/lib/eo \ | ||
878 | -I$(top_srcdir)/src/lib/eet \ | ||
879 | -I$(top_srcdir)/src/lib/evas \ | ||
880 | -I$(top_srcdir)/src/lib/evas/include \ | 819 | -I$(top_srcdir)/src/lib/evas/include \ |
881 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 820 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
882 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ | 821 | -I$(top_srcdir)/src/modules/evas/engines/gl_common \ |
883 | @evas_engine_wayland_egl_cflags@ \ | 822 | @EVAS_CFLAGS@ \ |
884 | @EVAS_CFLAGS@ | 823 | @evas_engine_wayland_egl_cflags@ |
885 | modules_evas_engines_wayland_egl_module_la_LIBADD = \ | 824 | modules_evas_engines_wayland_egl_module_la_LIBADD = \ |
825 | @USE_EVAS_LIBS@ \ | ||
886 | modules/evas/engines/gl_common/libevas_engine_gl_common.la \ | 826 | modules/evas/engines/gl_common/libevas_engine_gl_common.la \ |
887 | lib/eet/libeet.la \ | ||
888 | lib/evas/libevas.la \ | ||
889 | @evas_engine_wayland_egl_libs@ | 827 | @evas_engine_wayland_egl_libs@ |
828 | modules_evas_engines_wayland_egl_module_la_DEPENDENCIES = \ | ||
829 | @USE_EVAS_INTERNAL_LIBS@ \ | ||
830 | modules/evas/engines/gl_common/libevas_engine_gl_common.la | ||
890 | modules_evas_engines_wayland_egl_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 831 | modules_evas_engines_wayland_egl_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
891 | modules_evas_engines_wayland_egl_module_la_LIBTOOLFLAGS = --tag=disable-static | 832 | modules_evas_engines_wayland_egl_module_la_LIBTOOLFLAGS = --tag=disable-static |
892 | endif | 833 | endif |
@@ -907,17 +848,14 @@ enginewaylandshmpkgdir = $(libdir)/evas/modules/engines/wayland_shm/$(MODULE_ARC | |||
907 | enginewaylandshmpkg_LTLIBRARIES = modules/evas/engines/wayland_shm/module.la | 848 | enginewaylandshmpkg_LTLIBRARIES = modules/evas/engines/wayland_shm/module.la |
908 | modules_evas_engines_wayland_shm_module_la_SOURCES = $(WAYLAND_SHM_SOURCES) | 849 | modules_evas_engines_wayland_shm_module_la_SOURCES = $(WAYLAND_SHM_SOURCES) |
909 | modules_evas_engines_wayland_shm_module_la_CPPFLAGS = \ | 850 | modules_evas_engines_wayland_shm_module_la_CPPFLAGS = \ |
910 | -I$(top_srcdir)/src/lib/eina \ | ||
911 | -I$(top_builddir)/src/lib/eina \ | ||
912 | -I$(top_srcdir)/src/lib/eo \ | ||
913 | -I$(top_srcdir)/src/lib/evas \ | ||
914 | -I$(top_srcdir)/src/lib/evas/include \ | 851 | -I$(top_srcdir)/src/lib/evas/include \ |
915 | -I$(top_srcdir)/src/lib/evas/cserve2 \ | 852 | -I$(top_srcdir)/src/lib/evas/cserve2 \ |
916 | @evas_engine_wayland_shm_cflags@ \ | 853 | @EVAS_CFLAGS@ \ |
917 | @EVAS_CFLAGS@ | 854 | @evas_engine_wayland_shm_cflags@ |
918 | modules_evas_engines_wayland_shm_module_la_LIBADD = \ | 855 | modules_evas_engines_wayland_shm_module_la_LIBADD = \ |
919 | lib/evas/libevas.la \ | 856 | @USE_EVAS_LIBS@ \ |
920 | @evas_engine_wayland_shm_libs@ | 857 | @evas_engine_wayland_shm_libs@ |
858 | modules_evas_engines_wayland_shm_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
921 | modules_evas_engines_wayland_shm_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 859 | modules_evas_engines_wayland_shm_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
922 | modules_evas_engines_wayland_shm_module_la_LIBTOOLFLAGS = --tag=disable-static | 860 | modules_evas_engines_wayland_shm_module_la_LIBTOOLFLAGS = --tag=disable-static |
923 | endif | 861 | endif |
@@ -935,17 +873,13 @@ loaderbmppkgdir = $(libdir)/evas/modules/loaders/bmp/$(MODULE_ARCH) | |||
935 | loaderbmppkg_LTLIBRARIES = modules/evas/loaders/bmp/module.la | 873 | loaderbmppkg_LTLIBRARIES = modules/evas/loaders/bmp/module.la |
936 | modules_evas_loaders_bmp_module_la_SOURCES = modules/evas/loaders/bmp/evas_image_load_bmp.c | 874 | modules_evas_loaders_bmp_module_la_SOURCES = modules/evas/loaders/bmp/evas_image_load_bmp.c |
937 | modules_evas_loaders_bmp_module_la_CPPFLAGS = \ | 875 | modules_evas_loaders_bmp_module_la_CPPFLAGS = \ |
938 | -I$(top_srcdir)/src/lib/eina \ | ||
939 | -I$(top_builddir)/src/lib/eina \ | ||
940 | -I$(top_srcdir)/src/lib/eo \ | ||
941 | -I$(top_srcdir)/src/lib/evas \ | ||
942 | -I$(top_srcdir)/src/lib/evas/include \ | 876 | -I$(top_srcdir)/src/lib/evas/include \ |
943 | -DEFL_EVAS_BUILD \ | 877 | @EVAS_CFLAGS@ \ |
944 | @evas_image_loader_bmp_cflags@ \ | 878 | @evas_image_loader_bmp_cflags@ |
945 | @EVAS_CFLAGS@ | ||
946 | modules_evas_loaders_bmp_module_la_LIBADD = \ | 879 | modules_evas_loaders_bmp_module_la_LIBADD = \ |
947 | lib/evas/libevas.la \ | 880 | @USE_EVAS_LIBS@ \ |
948 | @evas_image_loader_bmp_libs@ | 881 | @evas_image_loader_bmp_libs@ |
882 | modules_evas_loaders_bmp_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
949 | modules_evas_loaders_bmp_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 883 | modules_evas_loaders_bmp_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
950 | modules_evas_loaders_bmp_module_la_LIBTOOLFLAGS = --tag=disable-static | 884 | modules_evas_loaders_bmp_module_la_LIBTOOLFLAGS = --tag=disable-static |
951 | endif | 885 | endif |
@@ -961,19 +895,13 @@ loadereetpkgdir = $(libdir)/evas/modules/loaders/eet/$(MODULE_ARCH) | |||
961 | loadereetpkg_LTLIBRARIES = modules/evas/loaders/eet/module.la | 895 | loadereetpkg_LTLIBRARIES = modules/evas/loaders/eet/module.la |
962 | modules_evas_loaders_eet_module_la_SOURCES = modules/evas/loaders/eet/evas_image_load_eet.c | 896 | modules_evas_loaders_eet_module_la_SOURCES = modules/evas/loaders/eet/evas_image_load_eet.c |
963 | modules_evas_loaders_eet_module_la_CPPFLAGS = \ | 897 | modules_evas_loaders_eet_module_la_CPPFLAGS = \ |
964 | -I$(top_srcdir)/src/lib/eina \ | ||
965 | -I$(top_builddir)/src/lib/eina \ | ||
966 | -I$(top_srcdir)/src/lib/eo \ | ||
967 | -I$(top_srcdir)/src/lib/eet \ | ||
968 | -I$(top_srcdir)/src/lib/evas \ | ||
969 | -I$(top_srcdir)/src/lib/evas/include \ | 898 | -I$(top_srcdir)/src/lib/evas/include \ |
970 | -DEFL_EVAS_BUILD \ | 899 | @EVAS_CFLAGS@ \ |
971 | @evas_image_loader_eet_cflags@ \ | 900 | @evas_image_loader_eet_cflags@ |
972 | @EVAS_CFLAGS@ | ||
973 | modules_evas_loaders_eet_module_la_LIBADD = \ | 901 | modules_evas_loaders_eet_module_la_LIBADD = \ |
974 | lib/evas/libevas.la \ | 902 | @USE_EVAS_LIBS@ \ |
975 | lib/evas/libeet.la \ | ||
976 | @evas_image_loader_eet_libs@ | 903 | @evas_image_loader_eet_libs@ |
904 | modules_evas_loaders_eet_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
977 | modules_evas_loaders_eet_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 905 | modules_evas_loaders_eet_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
978 | modules_evas_loaders_eet_module_la_LIBTOOLFLAGS = --tag=disable-static | 906 | modules_evas_loaders_eet_module_la_LIBTOOLFLAGS = --tag=disable-static |
979 | endif | 907 | endif |
@@ -989,17 +917,13 @@ loadergenericpkgdir = $(libdir)/evas/modules/loaders/generic/$(MODULE_ARCH) | |||
989 | loadergenericpkg_LTLIBRARIES = modules/evas/loaders/generic/module.la | 917 | loadergenericpkg_LTLIBRARIES = modules/evas/loaders/generic/module.la |
990 | modules_evas_loaders_generic_module_la_SOURCES = modules/evas/loaders/generic/evas_image_load_generic.c | 918 | modules_evas_loaders_generic_module_la_SOURCES = modules/evas/loaders/generic/evas_image_load_generic.c |
991 | modules_evas_loaders_generic_module_la_CPPFLAGS = \ | 919 | modules_evas_loaders_generic_module_la_CPPFLAGS = \ |
992 | -I$(top_srcdir)/src/lib/eina \ | ||
993 | -I$(top_builddir)/src/lib/eina \ | ||
994 | -I$(top_srcdir)/src/lib/eo \ | ||
995 | -I$(top_srcdir)/src/lib/evas \ | ||
996 | -I$(top_srcdir)/src/lib/evas/include \ | 920 | -I$(top_srcdir)/src/lib/evas/include \ |
997 | -DEFL_EVAS_BUILD \ | 921 | @EVAS_CFLAGS@ \ |
998 | @evas_image_loader_generic_cflags@ \ | 922 | @evas_image_loader_generic_cflags@ |
999 | @EVAS_CFLAGS@ | ||
1000 | modules_evas_loaders_generic_module_la_LIBADD = \ | 923 | modules_evas_loaders_generic_module_la_LIBADD = \ |
1001 | lib/evas/libevas.la \ | 924 | @USE_EVAS_LIBS@ \ |
1002 | @evas_image_loader_generic_libs@ | 925 | @evas_image_loader_generic_libs@ |
926 | modules_evas_loaders_generic_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
1003 | modules_evas_loaders_generic_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 927 | modules_evas_loaders_generic_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
1004 | modules_evas_loaders_generic_module_la_LIBTOOLFLAGS = --tag=disable-static | 928 | modules_evas_loaders_generic_module_la_LIBTOOLFLAGS = --tag=disable-static |
1005 | endif | 929 | endif |
@@ -1015,17 +939,13 @@ loadergifpkgdir = $(libdir)/evas/modules/loaders/gif/$(MODULE_ARCH) | |||
1015 | loadergifpkg_LTLIBRARIES = modules/evas/loaders/gif/module.la | 939 | loadergifpkg_LTLIBRARIES = modules/evas/loaders/gif/module.la |
1016 | modules_evas_loaders_gif_module_la_SOURCES = modules/evas/loaders/gif/evas_image_load_gif.c | 940 | modules_evas_loaders_gif_module_la_SOURCES = modules/evas/loaders/gif/evas_image_load_gif.c |
1017 | modules_evas_loaders_gif_module_la_CPPFLAGS = \ | 941 | modules_evas_loaders_gif_module_la_CPPFLAGS = \ |
1018 | -I$(top_srcdir)/src/lib/eina \ | ||
1019 | -I$(top_builddir)/src/lib/eina \ | ||
1020 | -I$(top_srcdir)/src/lib/eo \ | ||
1021 | -I$(top_srcdir)/src/lib/evas \ | ||
1022 | -I$(top_srcdir)/src/lib/evas/include \ | 942 | -I$(top_srcdir)/src/lib/evas/include \ |
1023 | -DEFL_EVAS_BUILD \ | 943 | @EVAS_CFLAGS@ \ |
1024 | @evas_image_loader_gif_cflags@ \ | 944 | @evas_image_loader_gif_cflags@ |
1025 | @EVAS_CFLAGS@ | ||
1026 | modules_evas_loaders_gif_module_la_LIBADD = \ | 945 | modules_evas_loaders_gif_module_la_LIBADD = \ |
1027 | lib/evas/libevas.la \ | 946 | @USE_EVAS_LIBS@ \ |
1028 | @evas_image_loader_gif_libs@ | 947 | @evas_image_loader_gif_libs@ |
948 | modules_evas_loaders_gif_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
1029 | modules_evas_loaders_gif_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 949 | modules_evas_loaders_gif_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
1030 | modules_evas_loaders_gif_module_la_LIBTOOLFLAGS = --tag=disable-static | 950 | modules_evas_loaders_gif_module_la_LIBTOOLFLAGS = --tag=disable-static |
1031 | endif | 951 | endif |
@@ -1041,17 +961,13 @@ loadericopkgdir = $(libdir)/evas/modules/loaders/ico/$(MODULE_ARCH) | |||
1041 | loadericopkg_LTLIBRARIES = modules/evas/loaders/ico/module.la | 961 | loadericopkg_LTLIBRARIES = modules/evas/loaders/ico/module.la |
1042 | modules_evas_loaders_ico_module_la_SOURCES = modules/evas/loaders/ico/evas_image_load_ico.c | 962 | modules_evas_loaders_ico_module_la_SOURCES = modules/evas/loaders/ico/evas_image_load_ico.c |
1043 | modules_evas_loaders_ico_module_la_CPPFLAGS = \ | 963 | modules_evas_loaders_ico_module_la_CPPFLAGS = \ |
1044 | -I$(top_srcdir)/src/lib/eina \ | ||
1045 | -I$(top_builddir)/src/lib/eina \ | ||
1046 | -I$(top_srcdir)/src/lib/eo \ | ||
1047 | -I$(top_srcdir)/src/lib/evas \ | ||
1048 | -I$(top_srcdir)/src/lib/evas/include \ | 964 | -I$(top_srcdir)/src/lib/evas/include \ |
1049 | -DEFL_EVAS_BUILD \ | 965 | @EVAS_CFLAGS@ \ |
1050 | @evas_image_loader_ico_cflags@ \ | 966 | @evas_image_loader_ico_cflags@ |
1051 | @EVAS_CFLAGS@ | ||
1052 | modules_evas_loaders_ico_module_la_LIBADD = \ | 967 | modules_evas_loaders_ico_module_la_LIBADD = \ |
1053 | lib/evas/libevas.la \ | 968 | @USE_EVAS_LIBS@ \ |
1054 | @evas_image_loader_ico_libs@ | 969 | @evas_image_loader_ico_libs@ |
970 | modules_evas_loaders_ico_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
1055 | modules_evas_loaders_ico_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 971 | modules_evas_loaders_ico_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
1056 | modules_evas_loaders_ico_module_la_LIBTOOLFLAGS = --tag=disable-static | 972 | modules_evas_loaders_ico_module_la_LIBTOOLFLAGS = --tag=disable-static |
1057 | endif | 973 | endif |
@@ -1070,17 +986,13 @@ loaderjpegpkgdir = $(libdir)/evas/modules/loaders/jpeg/$(MODULE_ARCH) | |||
1070 | loaderjpegpkg_LTLIBRARIES = modules/evas/loaders/jpeg/module.la | 986 | loaderjpegpkg_LTLIBRARIES = modules/evas/loaders/jpeg/module.la |
1071 | modules_evas_loaders_jpeg_module_la_SOURCES = modules/evas/loaders/jpeg/evas_image_load_jpeg.c | 987 | modules_evas_loaders_jpeg_module_la_SOURCES = modules/evas/loaders/jpeg/evas_image_load_jpeg.c |
1072 | modules_evas_loaders_jpeg_module_la_CPPFLAGS = \ | 988 | modules_evas_loaders_jpeg_module_la_CPPFLAGS = \ |
1073 | -I$(top_srcdir)/src/lib/eina \ | ||
1074 | -I$(top_builddir)/src/lib/eina \ | ||
1075 | -I$(top_srcdir)/src/lib/eo \ | ||
1076 | -I$(top_srcdir)/src/lib/evas \ | ||
1077 | -I$(top_srcdir)/src/lib/evas/include \ | 989 | -I$(top_srcdir)/src/lib/evas/include \ |
1078 | -DEFL_EVAS_BUILD \ | 990 | @EVAS_CFLAGS@ \ |
1079 | @evas_image_loader_jpeg_cflags@ \ | 991 | @evas_image_loader_jpeg_cflags@ |
1080 | @EVAS_CFLAGS@ | ||
1081 | modules_evas_loaders_jpeg_module_la_LIBADD = \ | 992 | modules_evas_loaders_jpeg_module_la_LIBADD = \ |
1082 | lib/evas/libevas.la \ | 993 | @USE_EVAS_LIBS@ \ |
1083 | @evas_image_loader_jpeg_libs@ | 994 | @evas_image_loader_jpeg_libs@ |
995 | modules_evas_loaders_jpeg_module_la_DEPENDENCIES = @USE_EVAS_INTERNAL_LIBS@ | ||
1084 | modules_evas_loaders_jpeg_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | 996 | modules_evas_loaders_jpeg_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ |
1085 | modules_evas_loaders_jpeg_module_la_LIBTOOLFLAGS = --tag=disable-static | 997 | modules_evas_loaders_jpeg_module_la_LIBTOOLFLAGS = --tag=disable-static |
1086 | if BUILD_SAVER_JPEG | 998 | if BUILD_SAVER_JPEG |
@@ -1088,16 +1000,13 @@ saverjpegpkgdir = $(libdir)/evas/modules/savers/jpeg/$(MODULE_ARCH) | |||
1088 | saverjpegpkg_LTLIBRARIES = modules/evas/savers/jpeg/module.la | 1000 | saverjpegpkg_LTLIBRARIES = modules/evas/savers/jpeg/module.la |
1089 | modules_evas_savers_jpeg_module_la_SOURCES = modules/evas/savers/jpeg/evas_image_save_jpeg.c | 1001 | modules_evas_savers_jpeg_module_la_SOURCES = modules/evas/savers/jpeg/evas_image_save_jpeg.c |
1090 | modules_evas_savers_jpeg_module_la_CPPFLAGS = \ | 1002 | modules_evas_savers_jpeg_module_la_CPPFLAGS = \ |
1091 | -I$(top_srcdir)/src/lib/eina \ | ||
1092 | -I$(top_builddir)/src/lib/eina \ | ||
1093 | -I$( |