blob: f1ff5d30e4ff51eb49dc96979d585001397b299d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
## Process this file with automake to create Makefile.in.
SUBDIRS = \
arabic \
basic \
hangul \
hebrew \
indic \
syriac \
thai \
tibetan
EXTRA_DIST = \
module.def
if CROSS_COMPILING
RUN_QUERY_IMMODULES_TEST=false
else
RUN_QUERY_IMMODULES_TEST=test -z "$(DESTDIR)"
endif
install-data-local:
@if $(RUN_QUERY_IMMODULES_TEST) ; then \
echo $(mkinstalldirs) $(DESTDIR)$(sysconfdir)/pango \&\& \
$(top_builddir)/pango/pango-querymodules \
\> $(DESTDIR)$(sysconfdir)/pango/pango.modules ; \
$(mkinstalldirs) $(DESTDIR)$(sysconfdir)/pango && \
$(top_builddir)/pango/pango-querymodules \
> $(DESTDIR)$(sysconfdir)/pango/pango.modules ; \
else \
echo "***" ; \
echo "*** Warning: pango.modules not created" ; \
echo "***" ; \
echo "*** Generate this file on the target system" ; \
echo "*** system using pango-querymodules" ; \
echo "***" ; \
fi
included-modules:
@for d in $(SUBDIRS) ; do \
( cd $$d && $(MAKE) $(AM_MAKEFLAGS) included-modules ) ; \
done
.PHONY: included-modules
|