mirror of
https://github.com/belluzj/fantasque-sans.git
synced 2024-10-31 22:41:32 +01:00
54 lines
2.0 KiB
Makefile
54 lines
2.0 KiB
Makefile
SOURCES=$(wildcard Sources/*.sfd)
|
|
BASENAMES=$(patsubst Sources/%.sfd,%,$(SOURCES))
|
|
TTF_FILES=$(patsubst %,%.ttf,$(BASENAMES))
|
|
# TTF_HINTED_FILES=$(patsubst %,%-autohint.ttf,$(BASENAMES))
|
|
OTF_FILES=$(patsubst %,OTF/%.otf,$(BASENAMES))
|
|
SVG_FILES=$(patsubst %,Webfonts/%.svg,$(BASENAMES))
|
|
WOFF_FILES=$(patsubst %,Webfonts/%.woff,$(BASENAMES))
|
|
EOT_FILES=$(patsubst %,Webfonts/%.eot,$(BASENAMES))
|
|
CSS_FRAGMENTS=$(patsubst %,Webfonts/%-decl.css,$(BASENAMES))
|
|
CSS_FILE=Webfonts/stylesheet.css
|
|
|
|
INSTALLED_TTF_FILES=$(patsubst %,~/.fonts/%.ttf,$(BASENAMES))
|
|
|
|
all: $(TTF_FILES)
|
|
|
|
OTF/%.otf %.ttf Webfonts/%.svg Webfonts/%.eot Webfonts/%.woff Webfonts/%-decl.css: Sources/%.sfd
|
|
mkdir -p OTF Webfonts
|
|
./validate-generate "$*"
|
|
# TODO determine perfect parameters
|
|
ttfautohint "$*.ttf" "$*.hinted.ttf"
|
|
mv "$*.hinted.ttf" "$*.ttf"
|
|
sfnt2woff "OTF/$*.otf"
|
|
mv "OTF/$*.woff" Webfonts
|
|
ttf2eot "$*.ttf" > "Webfonts/$*.eot"
|
|
|
|
$(CSS_FILE): $(CSS_FRAGMENTS)
|
|
cat $(foreach v,$(CSS_FRAGMENTS),$(if $(findstring Mono,$v),$v)) > $(CSS_FILE)
|
|
|
|
.PHONY: install clean zips zip-mono zip-prop
|
|
install: $(INSTALLED_TTF_FILES)
|
|
|
|
$(INSTALLED_TTF_FILES): $(TTF_FILES)
|
|
mkdir -p ~/.fonts/
|
|
cp $^ ~/.fonts/
|
|
fc-cache -f
|
|
|
|
zips: zip-mono zip-prop
|
|
|
|
zip-mono: $(TTF_FILES) $(OTF_FILES) $(SVG_FILES) $(EOT_FILES) $(WOFF_FILES) $(SOURCES) $(CSS_FILE)
|
|
zip FantasqueSansMono.zip OFL.txt README.md Webfonts/README.md $(CSS_FILE) $(foreach v,$^,$(if $(findstring Mono,$v),$v))
|
|
tar czvf FantasqueSansMono.tar.gz OFL.txt README.md Webfonts/README.md $(CSS_FILE) $(foreach v,$^,$(if $(findstring Mono,$v),$v))
|
|
|
|
|
|
zip-prop: $(TTF_FILES) $(OTF_FILES) $(SVG_FILES) $(EOT_FILES) $(WOFF_FILES) $(SOURCES)
|
|
zip FantasqueSans.zip OFL.txt README.md Webfonts/README.md $(foreach v,$^,$(if $(findstring Mono,$v),,$v))
|
|
tar czvf FantasqueSans.tar.gz OFL.txt README.md Webfonts/README.md $(foreach v,$^,$(if $(findstring Mono,$v),,$v))
|
|
|
|
clean:
|
|
rm -f *.ttf *.zip OTF/* Webfonts/*.eot Webfonts/*.woff Webfonts/*.svg Webfonts/*.css
|
|
|
|
test: $(INSTALLED_TTF_FILES)
|
|
gvim -f ~/Developpement/Système/kernel-base/shared/printf.c
|
|
|