blob: 31d0b635c10d24bca8e757597531f4aa35d87f5c (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
.PHONY: all clean ttf web pack check
NAME=amiri
VERSION=0.104
TOOLS=tools
SRC=sources
WEB=web
DOC=documentation
TESTS=test-suite
FONTS=$(NAME)-regular $(NAME)-bold $(NAME)-slanted $(NAME)-boldslanted
DOCS=README README-Arabic NEWS NEWS-Arabic
DIST=$(NAME)-$(VERSION)
BUILD=$(TOOLS)/build.py
RUNTEST=$(TOOLS)/runtest.py
FF=python $(BUILD)
SFNTTOOL=sfnttool
SFDS=$(FONTS:%=$(SRC)/%.sfd)
DTTF=$(FONTS:%=%.ttf)
WTTF=$(FONTS:%=$(WEB)/%.ttf)
WOFF=$(FONTS:%=$(WEB)/%.woff)
EOTS=$(FONTS:%=$(WEB)/%.eot)
PDFS=$(DOC)/$(NAME)-table.pdf
HTML=$(DOC)/documentation-arabic.html
CSSS=$(WEB)/$(NAME).css
FEAT=$(wildcard $(SRC)/*.fea)
TEST=$(wildcard $(TESTS)/*.test)
TEST+=$(wildcard $(TESTS)/*.ptest)
DOCFILES=$(DOCS:%=$(DOC)/%.txt)
license=OFL.txt OFL-FAQ.txt
all: ttf web
ttf: $(DTTF)
web: $(WTTF) $(WOFF) $(EOTS) $(CSSS)
doc: $(PDFS) $(HTML)
$(NAME)-regular.ttf: $(SRC)/$(NAME)-regular.sfd $(SRC)/$(NAME)-regular.fea $(FEAT) $(BUILD)
@echo " FF\t$@"
@$(FF) --input $< --output $@ --features=$(SRC)/$(NAME)-regular.fea --version $(VERSION)
$(NAME)-slanted.ttf: $(SRC)/$(NAME)-regular.sfd $(SRC)/$(NAME)-slanted.fea $(FEAT) $(BUILD)
@echo " FF\t$@"
@$(FF) --input $< --output $@ --features=$(SRC)/$(NAME)-slanted.fea --version $(VERSION) --slant=7
$(NAME)-bold.ttf: $(SRC)/$(NAME)-bold.sfd $(SRC)/$(NAME)-regular.fea $(FEAT) $(BUILD)
@echo " FF\t$@"
@$(FF) --input $< --output $@ --features=$(SRC)/$(NAME)-regular.fea --version $(VERSION)
$(NAME)-boldslanted.ttf: $(SRC)/$(NAME)-bold.sfd $(SRC)/$(NAME)-slanted.fea $(FEAT) $(BUILD)
@echo " FF\t$@"
@$(FF) --input $< --output $@ --features=$(SRC)/$(NAME)-slanted.fea --version $(VERSION) --slant=7
$(WEB)/%.ttf: %.ttf $(BUILD)
@echo " FF\t$@"
@mkdir -p $(WEB)
@$(FF) --input $< --output $@ --web 1>/dev/null 2>&1
$(WEB)/%.woff: $(WEB)/%.ttf
@echo " FF\t$@"
@mkdir -p $(WEB)
@$(SFNTTOOL) -w $< $@
$(WEB)/%.eot: $(WEB)/%.ttf
@echo " FF\t$@"
@mkdir -p $(WEB)
@$(SFNTTOOL) -e -x $< $@
$(WEB)/%.css: $(WTTF) $(BUILD)
@echo " GEN\t$@"
@mkdir -p $(WEB)
@$(FF) --css --input "$(WTTF)" --output $@ --version $(VERSION)
$(DOC)/$(NAME)-table.pdf: $(NAME)-regular.ttf
@echo " GEN\t$@"
@mkdir -p $(DOC)
@fntsample --font-file $< --output-file $@.tmp --print-outline > $@.txt
@pdfoutline $@.tmp $@.txt $@
@rm -f $@.tmp $@.txt
$(DOC)/documentation-arabic.html: $(DOC)/documentation-sources/documentation-arabic.md
@echo " GEN\t$@"
@pandoc $< -o $@ -f markdown -t html -s -c documentation-arabic.css --toc
check: $(TEST) $(DTTF)
ifeq ($(shell which hb-shape),)
@echo "hb-shape not found, skipping tests"
else
@echo "running tests"
@$(RUNTEST) $(TEST)
endif
clean:
rm -rfv $(DTTF) $(WTTF) $(WOFF) $(EOTS) $(CSSS) $(PDFS)
|