no more ecore-data - as warned before. going going oging... gone!
[profile/ivi/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 po
6
7
8 MAINTAINERCLEANFILES = \
9 ABOUT-NLS \
10 Makefile.in \
11 aclocal.m4 \
12 autom4te.cache \
13 config.guess \
14 config.h.in \
15 config.h.in~ \
16 config.rpath \
17 config.sub \
18 configure \
19 depcomp \
20 install-sh \
21 ltmain.sh \
22 missing \
23 mkinstalldirs \
24 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
25 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \
26 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \
27 m4/libtool.m4 \
28 m4/lt~obsolete.m4 \
29 m4/ltoptions.m4 \
30 m4/ltsugar.m4 \
31 m4/ltversion.m4 \
32 m4/codeset.m4 \
33 m4/gettext.m4 \
34 m4/glibc21.m4 \
35 m4/iconv.m4 \
36 m4/intdiv0.m4 \
37 m4/inttypes_h.m4 \
38 m4/inttypes.m4 \
39 m4/inttypes-pri.m4 \
40 m4/isc-posix.m4 \
41 m4/lcmessage.m4 \
42 m4/lib-ld.m4 \
43 m4/lib-link.m4 \
44 m4/lib-prefix.m4 \
45 m4/nls.m4 \
46 m4/po.m4 \
47 m4/progtest.m4 \
48 m4/stdint_h.m4 \
49 m4/uintmax_t.m4 \
50 m4/ulonglong.m4 \
51 po/boldquot.sed \
52 po/en@boldquot.header \
53 po/en@quot.header \
54 po/insert-header.sin \
55 po/Makefile.in.in \
56 po/Makevars.template \
57 po/quot.sed \
58 po/remove-potcdate.sin \
59 po/Rules-quot
60
61 bin_SCRIPTS = 
62
63 EXTRA_DIST = AUTHORS COPYING COPYING-PLAIN \
64              autogen.sh ecore.supp \
65              ecore.pc.in \
66              ecore-con.pc.in \
67              ecore-config.pc.in \
68              ecore-directfb.pc.in\
69              ecore-evas.pc.in \
70              ecore-fb.pc.in \
71              ecore-file.pc.in \
72              ecore-imf.pc.in \
73              ecore-imf-evas.pc.in \
74              ecore-ipc.pc.in \
75              ecore-x.pc.in \
76              ecore-win32.pc.in \
77              ecore-sdl.pc.in \
78              ecore-quartz.pc.in \
79              ecore-input.pc.in \
80              ecore-wince.pc.in \
81              ecore-data.pc.in \
82              ecore.spec.in ecore.spec
83
84 pkgconfigdir = $(libdir)/pkgconfig
85 pkgconfig_DATA = ecore.pc
86
87 if BUILD_ECORE_CON
88 pkgconfig_DATA += ecore-con.pc
89 endif
90
91 if BUILD_ECORE_CONFIG
92 pkgconfig_DATA += ecore-config.pc
93 endif
94
95 if BUILD_ECORE_DIRECTFB
96 pkgconfig_DATA += ecore-directfb.pc
97 endif
98
99 if BUILD_ECORE_EVAS
100 pkgconfig_DATA += ecore-evas.pc
101 endif
102
103 if BUILD_ECORE_FB
104 pkgconfig_DATA += ecore-fb.pc
105 endif
106
107 if BUILD_ECORE_FILE
108 pkgconfig_DATA += ecore-file.pc
109 endif
110
111 if BUILD_ECORE_IMF
112 pkgconfig_DATA += ecore-imf.pc
113 endif
114
115 if BUILD_ECORE_IMF_EVAS
116 pkgconfig_DATA += ecore-imf-evas.pc
117 endif
118
119 if BUILD_ECORE_INPUT
120 pkgconfig_DATA += ecore-input.pc
121 endif
122
123 if BUILD_ECORE_INPUT_EVAS
124 pkgconfig_DATA += ecore-input-evas.pc
125 endif
126
127 if BUILD_ECORE_IPC
128 pkgconfig_DATA += ecore-ipc.pc
129 endif
130
131 if BUILD_ECORE_X
132 pkgconfig_DATA += ecore-x.pc
133 endif
134
135 if BUILD_ECORE_WIN32
136 pkgconfig_DATA += ecore-win32.pc
137 endif
138
139 if BUILD_ECORE_WINCE
140 pkgconfig_DATA += ecore-wince.pc
141 endif
142
143 if BUILD_ECORE_SDL
144 pkgconfig_DATA += ecore-sdl.pc
145 endif
146
147 if BUILD_ECORE_QUARTZ
148 pkgconfig_DATA += ecore-quartz.pc
149 endif
150
151 .PHONY: doc
152
153 # Documentation
154
155 doc:
156         @echo "entering doc/"
157         make -C doc doc
158
159 # Unit tests
160
161 if EFL_ENABLE_TESTS
162
163 check-local:
164         @./src/tests/ecore_suite
165
166 else
167
168 check-local:
169         @echo "reconfigure with --enable-tests"
170
171 endif