Documentation setup ...
[platform/upstream/enlightenment.git] / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 SUBDIRS = intl po src lib client doc
4
5 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
6                        config.h.in config.sub configure install-sh \
7                        ltconfig ltmain.sh missing mkinstalldirs \
8                        stamp-h.in
9
10 install-data-local:
11         @$(NORMAL_INSTALL)
12         if test -d $(srcdir)/data; then \
13           $(mkinstalldirs) $(DESTDIR)$(pkgdatadir); \
14           (cd $(srcdir); tar -cf - data) | (cd $(DESTDIR)$(pkgdatadir); tar -xf -) \
15         fi
16
17 dist-hook:
18         if test -d data; then \
19           (cd $(srcdir); tar -cf - data) | (cd $(distdir); tar -xf -) \
20         fi
21
22 EXTRA_DIST = README AUTHORS COPYING e.spec
23
24 docs:
25         $(MAKE) -C $(top_srcdir)/doc docs
26
27 if HAVE_JADE
28 html-docs:
29         $(MAKE) -C $(top_srcdir)/doc html-docs
30 endif
31