resetting manifest requested domain to floor
[platform/core/uifw/e17-misc.git] / configure.ac
1
2 AC_INIT(e17-misc, 1.0, shiin.lee@samsung.com)
3 AM_INIT_AUTOMAKE
4 AC_CONFIG_SRCDIR(configure.ac)
5
6 AC_PREFIX_DEFAULT(/opt/home/app)
7
8 PKG_CHECK_MODULES(EET, [eet])
9 AC_ARG_WITH(eet-eet,
10 [   --with-eet-eet=PATH             specify a specific path to eet utility],
11 [
12    v=$withval;
13    eet_eet=$v
14    echo "   Enlightenment eet explicitly set to "$eet_eet;
15 ],[
16    eet_eet=$(pkg-config --variable=prefix eet)/bin/eet
17 ])
18 AC_SUBST(eet_eet)
19
20 AC_CONFIG_FILES([
21 Makefile
22 arm/Makefile
23 arm/opt/Makefile
24 arm/opt/home/Makefile
25 arm/opt/home/app/Makefile
26 arm/opt/home/app/.e/Makefile
27 arm/opt/home/app/.e/e/Makefile
28 arm/opt/home/app/.e/e/config/Makefile
29 arm/opt/home/app/.e/e/config/samsung/Makefile
30 i386/Makefile
31 i386/opt/Makefile
32 i386/opt/home/Makefile
33 i386/opt/home/app/Makefile
34 i386/opt/home/app/.e/Makefile
35 i386/opt/home/app/.e/e/Makefile
36 i386/opt/home/app/.e/e/config/Makefile
37 i386/opt/home/app/.e/e/config/samsung/Makefile
38 emulator/Makefile
39 emulator/opt/Makefile
40 emulator/opt/home/Makefile
41 emulator/opt/home/app/Makefile
42 emulator/opt/home/app/.e/Makefile
43 emulator/opt/home/app/.e/e/Makefile
44 emulator/opt/home/app/.e/e/config/Makefile
45 emulator/opt/home/app/.e/e/config/samsung/Makefile
46 ])
47 AC_OUTPUT