svn update: 48958 (latest:48959)
[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 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-cocoa.pc.in \
79              ecore-input.pc.in \
80              ecore-wince.pc.in \
81              ecore.spec.in ecore.spec
82
83 pkgconfigdir = $(libdir)/pkgconfig
84 pkgconfig_DATA = ecore.pc
85
86 if BUILD_ECORE_CON
87 pkgconfig_DATA += ecore-con.pc
88 endif
89
90 if BUILD_ECORE_CONFIG
91 pkgconfig_DATA += ecore-config.pc
92 endif
93
94 if BUILD_ECORE_DIRECTFB
95 pkgconfig_DATA += ecore-directfb.pc
96 endif
97
98 if BUILD_ECORE_EVAS
99 pkgconfig_DATA += ecore-evas.pc
100 endif
101
102 if BUILD_ECORE_FB
103 pkgconfig_DATA += ecore-fb.pc
104 endif
105
106 if BUILD_ECORE_FILE
107 pkgconfig_DATA += ecore-file.pc
108 endif
109
110 if BUILD_ECORE_IMF
111 pkgconfig_DATA += ecore-imf.pc
112 endif
113
114 if BUILD_ECORE_IMF_EVAS
115 pkgconfig_DATA += ecore-imf-evas.pc
116 endif
117
118 if BUILD_ECORE_INPUT
119 pkgconfig_DATA += ecore-input.pc
120 endif
121
122 if BUILD_ECORE_INPUT_EVAS
123 pkgconfig_DATA += ecore-input-evas.pc
124 endif
125
126 if BUILD_ECORE_IPC
127 pkgconfig_DATA += ecore-ipc.pc
128 endif
129
130 if BUILD_ECORE_X
131 pkgconfig_DATA += ecore-x.pc
132 endif
133
134 if BUILD_ECORE_WIN32
135 pkgconfig_DATA += ecore-win32.pc
136 endif
137
138 if BUILD_ECORE_WINCE
139 pkgconfig_DATA += ecore-wince.pc
140 endif
141
142 if BUILD_ECORE_SDL
143 pkgconfig_DATA += ecore-sdl.pc
144 endif
145
146 if BUILD_ECORE_COCOA
147 pkgconfig_DATA += ecore-cocoa.pc
148 endif
149
150 .PHONY: doc
151
152 # Documentation
153
154 doc:
155         @echo "entering doc/"
156         make -C doc doc
157
158 # Unit tests
159
160 if EFL_ENABLE_TESTS
161
162 check-local:
163         @./src/tests/ecore_suite
164
165 else
166
167 check-local:
168         @echo "reconfigure with --enable-tests"
169
170 endif