Implement ee's req value to other windowing system.
[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 config.guess \
18 config.h.in \
19 config.h.in~ \
20 config.rpath \
21 config.sub \
22 configure \
23 depcomp \
24 install-sh \
25 ltmain.sh \
26 missing \
27 mkinstalldirs \
28 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
29 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \
30 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \
31 m4/libtool.m4 \
32 m4/lt~obsolete.m4 \
33 m4/ltoptions.m4 \
34 m4/ltsugar.m4 \
35 m4/ltversion.m4 \
36 m4/codeset.m4 \
37 m4/gettext.m4* \
38 m4/glibc2*.m4 \
39 m4/iconv.m4 \
40 m4/intdiv0.m4 \
41 m4/intldir.m4 \
42 m4/intl.m4 \
43 m4/intlmacosx.m4 \
44 m4/intmax.m4* \
45 m4/inttypes_h.m4 \
46 m4/inttypes.m4 \
47 m4/inttypes-pri.m4 \
48 m4/isc-posix.m4 \
49 m4/lcmessage.m4 \
50 m4/lib-ld.m4* \
51 m4/lib-link.m4 \
52 m4/lib-prefix.m4* \
53 m4/lock.m4 \
54 m4/longdouble.m4* \
55 m4/longlong.m4* \
56 m4/nls.m4 \
57 m4/po.m4* \
58 m4/printf-posix.m4* \
59 m4/progtest.m4 \
60 m4/signed.m4 \
61 m4/size_max.m4* \
62 m4/stdint_h.m4 \
63 m4/uintmax_t.m4 \
64 m4/ulonglong.m4* \
65 m4/visibility.m4 \
66 m4/wchar_t.m4 \
67 m4/wint_t.m4* \
68 m4/xsize.m4*
69
70 if HAVE_PO
71
72 MAINTAINERCLEANFILES += \
73 po/boldquot.sed \
74 po/en@boldquot.header \
75 po/en@quot.header \
76 po/insert-header.sin \
77 po/Makefile.in.in* \
78 po/Makevars.template \
79 po/quot.sed \
80 po/remove-potcdate.sin \
81 po/Rules-quot*
82
83 endif
84
85 bin_SCRIPTS = 
86
87 EXTRA_DIST = \
88 AUTHORS \
89 COPYING \
90 autogen.sh \
91 ecore.supp \
92 ecore.pc.in \
93 ecore-con.pc.in \
94 ecore-config.pc.in \
95 ecore-directfb.pc.in\
96 ecore-evas.pc.in \
97 ecore-fb.pc.in \
98 ecore-file.pc.in \
99 ecore-imf.pc.in \
100 ecore-imf-evas.pc.in \
101 ecore-ipc.pc.in \
102 ecore-x.pc.in \
103 ecore-win32.pc.in \
104 ecore-sdl.pc.in \
105 ecore-cocoa.pc.in \
106 ecore-input.pc.in \
107 ecore-wince.pc.in \
108 ecore.spec.in \
109 ecore.spec \
110 m4/ac_abstract_socket.m4 \
111 m4/ac_attribute.m4 \
112 m4/check_x_extension.m4 \
113 m4/ecore_check_module.m4 \
114 m4/ecore_check_options.m4 \
115 m4/efl_doxygen.m4 \
116 m4/efl_path_max.m4 \
117 m4/efl_tests.m4 \
118 m4/efl_threads.m4
119
120
121 pkgconfigdir = $(libdir)/pkgconfig
122 pkgconfig_DATA = ecore.pc
123
124 if BUILD_ECORE_CON
125 pkgconfig_DATA += ecore-con.pc
126 endif
127
128 if BUILD_ECORE_CONFIG
129 pkgconfig_DATA += ecore-config.pc
130 endif
131
132 if BUILD_ECORE_DIRECTFB
133 pkgconfig_DATA += ecore-directfb.pc
134 endif
135
136 if BUILD_ECORE_EVAS
137 pkgconfig_DATA += ecore-evas.pc
138 endif
139
140 if BUILD_ECORE_FB
141 pkgconfig_DATA += ecore-fb.pc
142 endif
143
144 if BUILD_ECORE_FILE
145 pkgconfig_DATA += ecore-file.pc
146 endif
147
148 if BUILD_ECORE_IMF
149 pkgconfig_DATA += ecore-imf.pc
150 endif
151
152 if BUILD_ECORE_IMF_EVAS
153 pkgconfig_DATA += ecore-imf-evas.pc
154 endif
155
156 if BUILD_ECORE_INPUT
157 pkgconfig_DATA += ecore-input.pc
158 endif
159
160 if BUILD_ECORE_INPUT_EVAS
161 pkgconfig_DATA += ecore-input-evas.pc
162 endif
163
164 if BUILD_ECORE_IPC
165 pkgconfig_DATA += ecore-ipc.pc
166 endif
167
168 if BUILD_ECORE_X
169 pkgconfig_DATA += ecore-x.pc
170 endif
171
172 if BUILD_ECORE_WIN32
173 pkgconfig_DATA += ecore-win32.pc
174 endif
175
176 if BUILD_ECORE_WINCE
177 pkgconfig_DATA += ecore-wince.pc
178 endif
179
180 if BUILD_ECORE_SDL
181 pkgconfig_DATA += ecore-sdl.pc
182 endif
183
184 if BUILD_ECORE_COCOA
185 pkgconfig_DATA += ecore-cocoa.pc
186 endif
187
188 .PHONY: doc
189
190 # Documentation
191
192 doc:
193         @echo "entering doc/"
194         make -C doc doc
195
196 # Unit tests
197
198 if EFL_ENABLE_TESTS
199
200 check-local:
201         @./src/tests/ecore_suite
202
203 else
204
205 check-local:
206         @echo "reconfigure with --enable-tests"
207
208 endif