blob: 999912f736f035a5518125fa5a4418e26c6163ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
## Process this file with automake to create Makefile.in.
SUBDIRS = \
arabic \
basic \
hangul \
indic \
tamil \
thai \
hebrew
EXTRA_DIST = \
module.def
included-modules:
@for d in $(SUBDIRS) ; do \
( cd $$d && $(MAKE) $(AM_MAKEFLAGS) included-modules ) ; \
done
.PHONY: included-modules
|