remove from MAINTAINERCLEANFILES files that are removed by distclean rule
[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 Makefile.in \
10 aclocal.m4 \
11 autom4te.cache \
12 config.guess \
13 config.h.in \
14 config.rpath \
15 config.sub \
16 configure \
17 depcomp \
18 install-sh \
19 ltmain.sh \
20 missing \
21 mkinstalldirs \
22 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
23 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \
24 $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \
25 m4/libtool.m4 \
26 m4/lt~obsolete.m4 \
27 m4/ltoptions.m4 \
28 m4/ltsugar.m4 \
29 m4/ltversion.m4
30
31 bin_SCRIPTS = 
32
33 EXTRA_DIST = AUTHORS COPYING COPYING-PLAIN \
34              autogen.sh ecore.supp \
35              ecore.pc.in \
36              ecore-con.pc.in \
37              ecore-config.pc.in \
38              ecore-directfb.pc.in\
39              ecore-evas.pc.in \
40              ecore-fb.pc.in \
41              ecore-file.pc.in \
42              ecore-imf.pc.in \
43              ecore-imf-evas.pc.in \
44              ecore-ipc.pc.in \
45              ecore-job.pc.in \
46              ecore-txt.pc.in \
47              ecore-x.pc.in \
48              ecore-win32.pc.in \
49              ecore-sdl.pc.in \
50              ecore-quartz.pc.in \
51              ecore-input.pc.in \
52              ecore-wince.pc.in \
53              ecore.spec.in ecore.spec
54
55 if BUILD_ECORE_CON
56 pcon = ecore-con.pc
57 endif
58
59 if BUILD_ECORE_CONFIG
60 pconfig = ecore-config.pc
61 endif
62
63 if BUILD_ECORE_DIRECTFB
64 pdfb = ecore-directfb.pc
65 endif
66
67 if BUILD_ECORE_EVAS
68 pevas = ecore-evas.pc
69 endif
70
71 if BUILD_ECORE_FB
72 pfb = ecore-fb.pc
73 endif
74
75 if BUILD_ECORE_FILE
76 pfile = ecore-file.pc
77 endif
78
79 if BUILD_ECORE_IMF
80 pimf = ecore-imf.pc
81 endif
82
83 if BUILD_ECORE_IMF_EVAS
84 pimfevas = ecore-imf-evas.pc
85 endif
86
87 if BUILD_ECORE_INPUT
88 pinput = ecore-input.pc
89 endif
90
91 if BUILD_ECORE_IPC
92 pipc = ecore-ipc.pc
93 endif
94
95 if BUILD_ECORE_JOB
96 pjob = ecore-job.pc
97 endif
98
99 if BUILD_ECORE_TXT
100 ptxt = ecore-txt.pc
101 endif
102
103 if BUILD_ECORE_X
104 px = ecore-x.pc
105 endif
106
107 if BUILD_ECORE_WIN32
108 pwin32 = ecore-win32.pc
109 endif
110
111 if BUILD_ECORE_WINCE
112 pwince = ecore-wince.pc
113 endif
114
115 if BUILD_ECORE_SDL
116 psdl = ecore-sdl.pc
117 endif
118
119 if BUILD_ECORE_QUARTZ
120 pquartz = ecore-quartz.pc
121 endif
122
123 if BUILD_ECORE_X_XCB
124 px = ecore-x.pc
125 endif
126
127 pkgconfigdir = $(libdir)/pkgconfig
128 pkgconfig_DATA = \
129         ecore.pc $(pcon) $(pconfig) $(pdfb) $(pevas) \
130         $(pfb) $(pfile) $(pimf) $(pimfevas) $(pinput) $(pipc) $(pjob) \
131         $(ptxt) $(px) $(pwin32) $(pwince) $(psdl) $(pquartz)
132
133 .PHONY: doc
134
135 doc:
136         @echo "entering doc/"
137         make -C doc doc
138