diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 000000000..c6b6c2afe --- /dev/null +++ b/Makefile.am | |||
@@ -0,0 +1,31 @@ | |||
1 | ## Process this file with automake to produce Makefile.in | ||
2 | |||
3 | SUBDIRS = intl po src | ||
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)/data; \ | ||
14 | for d in $(srcdir)/data/*; do \ | ||
15 | if test -f $$d; then \ | ||
16 | $(INSTALL_DATA) $$d $(DESTDIR)$(pkgdatadir)/data; \ | ||
17 | fi \ | ||
18 | done \ | ||
19 | fi | ||
20 | |||
21 | dist-hook: | ||
22 | if test -d data; then \ | ||
23 | mkdir $(distdir)/data; \ | ||
24 | for d in data/*; do \ | ||
25 | if test -f $$d; then \ | ||
26 | cp -p $$d $(distdir)/d; \ | ||
27 | fi \ | ||
28 | done \ | ||
29 | fi | ||
30 | |||
31 | EXTRA_DIST = README AUTHORS COPYING e.spec | ||