fix and format EXTRA_DIST
[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 m4/ac_abstract_socket.m4 \
98 m4/ac_attribute.m4 \
99 m4/check_x_extension.m4 \
100 m4/ecore_check_module.m4 \
101 m4/ecore_check_options.m4 \
102 m4/efl_doxygen.m4 \
103 m4/efl_path_max.m4 \
104 m4/efl_tests.m4 \
105 m4/efl_threads.m4
106
107
108 pkgconfigdir = $(libdir)/pkgconfig
109 pkgconfig_DATA = ecore.pc
110
111 if BUILD_ECORE_CON
112 pkgconfig_DATA += ecore-con.pc
113 endif
114
115 if BUILD_ECORE_CONFIG
116 pkgconfig_DATA += ecore-config.pc
117 endif
118
119 if BUILD_ECORE_DIRECTFB
120 pkgconfig_DATA += ecore-directfb.pc
121 endif
122
123 if BUILD_ECORE_EVAS
124 pkgconfig_DATA += ecore-evas.pc
125 endif
126
127 if BUILD_ECORE_FB
128 pkgconfig_DATA += ecore-fb.pc
129 endif
130
131 if BUILD_ECORE_FILE
132 pkgconfig_DATA += ecore-file.pc
133 endif
134
135 if BUILD_ECORE_IMF
136 pkgconfig_DATA += ecore-imf.pc
137 endif
138
139 if BUILD_ECORE_IMF_EVAS
140 pkgconfig_DATA += ecore-imf-evas.pc
141 endif
142
143 if BUILD_ECORE_INPUT
144 pkgconfig_DATA += ecore-input.pc
145 endif
146
147 if BUILD_ECORE_INPUT_EVAS
148 pkgconfig_DATA += ecore-input-evas.pc
149 endif
150
151 if BUILD_ECORE_IPC
152 pkgconfig_DATA += ecore-ipc.pc
153 endif
154
155 if BUILD_ECORE_X
156 pkgconfig_DATA += ecore-x.pc
157 endif
158
159 if BUILD_ECORE_WIN32
160 pkgconfig_DATA += ecore-win32.pc
161 endif
162
163 if BUILD_ECORE_WINCE
164 pkgconfig_DATA += ecore-wince.pc
165 endif
166
167 if BUILD_ECORE_SDL
168 pkgconfig_DATA += ecore-sdl.pc
169 endif
170
171 if BUILD_ECORE_COCOA
172 pkgconfig_DATA += ecore-cocoa.pc
173 endif
174
175 .PHONY: doc
176
177 # Documentation
178
179 doc:
180         @echo "entering doc/"
181         make -C doc doc
182
183 # Unit tests
184
185 if EFL_ENABLE_TESTS
186
187 check-local:
188         @./src/tests/ecore_suite
189
190 else
191
192 check-local:
193         @echo "reconfigure with --enable-tests"
194
195 endif