blob: 998fe8e5e3081f786bff8e59084f6c1f69e777d8 (
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
|
TARGETS=$(foreach language,$(languages),$(addprefix $(language).,$(architectures)))
.PHONY: $(TARGETS)
all: $(TARGETS)
$(TARGETS): %:
target=$@ ; \
lang=$${target%.*} ; \
arch=$${target#*.} ; \
echo "Architecture: $$arch" ; \
if [ -n "$$noarchdir" ]; then \
destsuffix="$$lang" ; \
else \
if [ -n "$$web" ] ; then \
destsuffix="$$arch" ; \
else \
destsuffix="$$lang.$$arch" ; \
fi ; \
fi ; \
export destdir=build.out.$$lang.$$arch ; \
export tempdir=build.tmp.$$lang.$$arch ; \
./buildone.sh "$$arch" "$$lang" "$$formats" ; \
mkdir -p "$$destination/$$destsuffix" ; \
for format in $$formats; do \
if [ "$$format" = html ]; then \
mv ./$$destdir/html/* "$$destination/$$destsuffix" ; \
else \
# Do not fail because of missing PDF support for some languages \
if [ -n "$$web" ] ; then \
mv ./$$destdir/install.$$lang.$$format "$$destination/$$destsuffix/install.$$format.$$lang" 2>/dev/null || true ; \
else \
mv ./$$destdir/install.$$lang.$$format "$$destination/$$destsuffix" 2>/dev/null || true ; \
fi ; \
fi ; \
done ; \
./clear.sh
|