[ecore] merged svn latest code (svn54830)
[framework/uifw/ecore.git] / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 ACLOCAL_AMFLAGS = -I m4
4
5 SUBDIRS = doc src
6
7 if HAVE_PO
8
9 SUBDIRS += po
10
11 endif
12
13 MAINTAINERCLEANFILES = \
14 ABOUT-NLS \
15 Makefile.in \
16 aclocal.m4 \
17 autom4te.cache \
18 config.guess \
19 config.h.in \
20 config.h.in~ \
21 config.rpath \
22 config.sub \
23 configure \
24 depcomp \
25 install-sh \
26 ltmain.sh \
27 missing \
28 mkinstalldirs \
29 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
30 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \
31 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \
32 m4/libtool.m4 \
33 m4/lt~obsolete.m4 \
34 m4/ltoptions.m4 \
35 m4/ltsugar.m4 \
36 m4/ltversion.m4 \
37 m4/codeset.m4 \
38 m4/gettext.m4 \
39 m4/glibc21.m4 \
40 m4/iconv.m4 \
41 m4/intdiv0.m4 \
42 m4/inttypes_h.m4 \
43 m4/inttypes.m4 \
44 m4/inttypes-pri.m4 \
45 m4/isc-posix.m4 \
46 m4/lcmessage.m4 \
47 m4/lib-ld.m4 \
48 m4/lib-link.m4 \
49 m4/lib-prefix.m4 \
50 m4/nls.m4 \
51 m4/po.m4 \
52 m4/progtest.m4 \
53 m4/stdint_h.m4 \
54 m4/uintmax_t.m4 \
55 m4/ulonglong.m4
56
57 if HAVE_PO
58
59 MAINTAINERCLEANFILES += \
60 po/boldquot.sed \
61 po/en@boldquot.header \
62 po/en@quot.header \
63 po/insert-header.sin \
64 po/Makefile.in.in \
65 po/Makevars.template \
66 po/quot.sed \
67 po/remove-potcdate.sin \
68 po/Rules-quot
69
70 endif
71
72 bin_SCRIPTS = 
73
74 EXTRA_DIST = \
75 AUTHORS \
76 COPYING \
77 autogen.sh \
78 ecore.supp \
79 ecore.pc.in \
80 ecore-con.pc.in \
81 ecore-config.pc.in \
82 ecore-directfb.pc.in\
83 ecore-evas.pc.in \
84 ecore-fb.pc.in \
85 ecore-file.pc.in \
86 ecore-imf.pc.in \
87 ecore-imf-evas.pc.in \
88 ecore-ipc.pc.in \
89 ecore-x.pc.in \
90 ecore-win32.pc.in \
91 ecore-sdl.pc.in \
92 ecore-cocoa.pc.in \
93 ecore-input.pc.in \
94 ecore-wince.pc.in \
95 ecore.spec.in \
96 ecore.spec \
97 examples/ecore_con_server_example.c \
98 examples/ecore_con_client_example.c \
99 m4/ac_abstract_socket.m4 \
100 m4/ac_attribute.m4 \
101 m4/check_x_extension.m4 \
102 m4/ecore_check_module.m4 \
103 m4/ecore_check_options.m4 \
104 m4/efl_doxygen.m4 \
105 m4/efl_path_max.m4 \
106 m4/efl_tests.m4 \
107 m4/efl_pthread.m4
108
109
110 pkgconfigdir = $(libdir)/pkgconfig
111 pkgconfig_DATA = ecore.pc
112
113 if BUILD_ECORE_CON
114 pkgconfig_DATA += ecore-con.pc
115 endif
116
117 if BUILD_ECORE_CONFIG
118 pkgconfig_DATA += ecore-config.pc
119 endif
120
121 if BUILD_ECORE_DIRECTFB
122 pkgconfig_DATA += ecore-directfb.pc
123 endif
124
125 if BUILD_ECORE_EVAS
126 pkgconfig_DATA += ecore-evas.pc
127 endif
128
129 if BUILD_ECORE_FB
130 pkgconfig_DATA += ecore-fb.pc
131 endif
132
133 if BUILD_ECORE_FILE
134 pkgconfig_DATA += ecore-file.pc
135 endif
136
137 if BUILD_ECORE_IMF
138 pkgconfig_DATA += ecore-imf.pc
139 endif
140
141 if BUILD_ECORE_IMF_EVAS
142 pkgconfig_DATA += ecore-imf-evas.pc
143 endif
144
145 if BUILD_ECORE_INPUT
146 pkgconfig_DATA += ecore-input.pc
147 endif
148
149 if BUILD_ECORE_INPUT_EVAS
150 pkgconfig_DATA += ecore-input-evas.pc
151 endif
152
153 if BUILD_ECORE_IPC
154 pkgconfig_DATA += ecore-ipc.pc
155 endif
156
157 if BUILD_ECORE_X
158 pkgconfig_DATA += ecore-x.pc
159 endif
160
161 if BUILD_ECORE_WIN32
162 pkgconfig_DATA += ecore-win32.pc
163 endif
164
165 if BUILD_ECORE_WINCE
166 pkgconfig_DATA += ecore-wince.pc
167 endif
168
169 if BUILD_ECORE_SDL
170 pkgconfig_DATA += ecore-sdl.pc
171 endif
172
173 if BUILD_ECORE_COCOA
174 pkgconfig_DATA += ecore-cocoa.pc
175 endif
176
177 .PHONY: doc
178
179 # Documentation
180
181 doc:
182         @echo "entering doc/"
183         make -C doc doc
184
185 # Unit tests
186
187 if EFL_ENABLE_TESTS
188
189 check-local:
190         @./src/tests/ecore_suite
191
192 else
193
194 check-local:
195         @echo "reconfigure with --enable-tests"
196
197 endif