2017-08-22 10:05:20 +03:00
|
|
|
# Targets:
|
2017-09-23 20:14:17 +03:00
|
|
|
# all Build all styles in all formats (default)
|
|
|
|
# all_ttf Build all styles as TrueType
|
|
|
|
# all_otf Build all styles as OpenType
|
|
|
|
# all_hinted Build all styles as autohinted TrueType
|
|
|
|
# STYLE Build STYLE in all formats (e.g. MediumItalic)
|
|
|
|
# STYLE_hinted Build STYLE in TTF and web formats with autohints
|
|
|
|
# STYLE_ttf Build STYLE as TrueType (e.g. MediumItalic_ttf)
|
|
|
|
# zip Build all styles as TrueType and package into a zip archive
|
|
|
|
# install Build all (web, ttf and otf) and install. Mac-only for now.
|
|
|
|
# dist Create a new release distribution. Does everything.
|
2017-08-22 10:05:20 +03:00
|
|
|
#
|
2017-11-27 07:26:15 +03:00
|
|
|
all: all_ttf all_otf
|
|
|
|
$(MAKE) all_web -j
|
|
|
|
|
|
|
|
all_hinted: all_ttf all_ttf_hinted all_otf
|
|
|
|
$(MAKE) all_web_hinted -j
|
2017-08-22 10:05:20 +03:00
|
|
|
|
2017-08-22 22:46:29 +03:00
|
|
|
VERSION := $(shell misc/version.py)
|
|
|
|
|
2017-08-22 10:05:20 +03:00
|
|
|
# generated.make is automatically generated by init.sh and defines depenencies for
|
|
|
|
# all styles and alias targets
|
|
|
|
include build/etc/generated.make
|
|
|
|
|
2017-08-25 10:44:50 +03:00
|
|
|
res_files := src/fontbuild.cfg src/diacritics.txt src/glyphlist.txt \
|
2017-08-28 12:36:40 +03:00
|
|
|
src/features.fea src/glyphorder.txt
|
2017-08-22 10:05:20 +03:00
|
|
|
|
|
|
|
# UFO -> TTF & OTF (note that UFO deps are defined by generated.make)
|
2017-09-19 01:58:34 +03:00
|
|
|
build/tmp/InterUITTF/InterUI-%.ttf: $(res_files)
|
2017-08-22 10:05:20 +03:00
|
|
|
misc/ufocompile --otf $*
|
|
|
|
|
2017-09-19 01:58:34 +03:00
|
|
|
build/tmp/InterUIOTF/InterUI-%.otf: build/tmp/InterUITTF/InterUI-%.ttf $(res_files)
|
2017-08-22 10:05:20 +03:00
|
|
|
@true
|
|
|
|
|
2017-09-23 22:19:01 +03:00
|
|
|
# tmp/ttf -> dist
|
|
|
|
build/dist-unhinted/Inter-UI-%.ttf: build/tmp/InterUITTF/InterUI-%.ttf
|
|
|
|
@mkdir -p build/dist-unhinted
|
|
|
|
cp -a "$<" "$@"
|
|
|
|
|
|
|
|
# tmp/otf -> dist
|
|
|
|
build/dist-unhinted/Inter-UI-%.otf: build/tmp/InterUIOTF/InterUI-%.otf
|
2017-08-22 10:05:20 +03:00
|
|
|
@mkdir -p build/dist-unhinted
|
|
|
|
cp -a "$<" "$@"
|
|
|
|
|
|
|
|
# autohint
|
2017-09-23 20:14:17 +03:00
|
|
|
build/dist-hinted/Inter-UI-%.ttf: build/dist-unhinted/Inter-UI-%.ttf
|
|
|
|
@mkdir -p build/dist-hinted
|
2017-08-22 10:05:20 +03:00
|
|
|
ttfautohint \
|
|
|
|
--hinting-limit=256 \
|
|
|
|
--hinting-range-min=8 \
|
|
|
|
--hinting-range-max=64 \
|
|
|
|
--fallback-stem-width=256 \
|
|
|
|
--strong-stem-width=D \
|
|
|
|
--no-info \
|
|
|
|
--verbose \
|
|
|
|
"$<" "$@"
|
|
|
|
|
|
|
|
# TTF -> WOFF2
|
|
|
|
build/%.woff2: build/%.ttf
|
|
|
|
woff2_compress "$<"
|
|
|
|
|
|
|
|
# TTF -> WOFF
|
|
|
|
build/%.woff: build/%.ttf
|
|
|
|
ttf2woff -O -t woff "$<" "$@"
|
|
|
|
|
|
|
|
# TTF -> EOT (disabled)
|
|
|
|
# build/%.eot: build/%.ttf
|
|
|
|
# ttf2eot "$<" > "$@"
|
|
|
|
|
2017-09-19 01:58:34 +03:00
|
|
|
ZIP_FILE_DIST := build/release/Inter-UI-${VERSION}.zip
|
|
|
|
ZIP_FILE_DEV := build/release/Inter-UI-${VERSION}-$(shell git rev-parse --short=10 HEAD).zip
|
2017-08-22 22:46:29 +03:00
|
|
|
|
|
|
|
# zip intermediate
|
2017-11-27 22:06:42 +03:00
|
|
|
build/.zip.zip: all_otf
|
|
|
|
$(MAKE) all_web all_web_hinted -j
|
2017-08-22 10:05:20 +03:00
|
|
|
@rm -rf build/.zip
|
|
|
|
@rm -f build/.zip.zip
|
|
|
|
@mkdir -p \
|
2017-09-19 01:58:34 +03:00
|
|
|
"build/.zip/Inter UI (web)" \
|
2017-09-23 20:14:17 +03:00
|
|
|
"build/.zip/Inter UI (web hinted)" \
|
2017-09-19 01:58:34 +03:00
|
|
|
"build/.zip/Inter UI (TTF)" \
|
2017-09-23 20:14:17 +03:00
|
|
|
"build/.zip/Inter UI (TTF hinted)" \
|
2017-09-19 01:58:34 +03:00
|
|
|
"build/.zip/Inter UI (OTF)"
|
2017-09-23 20:14:17 +03:00
|
|
|
@cp -a build/dist-unhinted/*.woff build/dist-unhinted/*.woff2 \
|
|
|
|
"build/.zip/Inter UI (web)/"
|
|
|
|
@cp -a build/dist-hinted/*.woff build/dist-hinted/*.woff2 \
|
|
|
|
"build/.zip/Inter UI (web hinted)/"
|
|
|
|
@cp -a build/dist-unhinted/*.ttf "build/.zip/Inter UI (TTF)/"
|
|
|
|
@cp -a build/dist-hinted/*.ttf "build/.zip/Inter UI (TTF hinted)/"
|
|
|
|
@cp -a build/dist-unhinted/*.otf "build/.zip/Inter UI (OTF)/"
|
|
|
|
@cp -a misc/doc/*.txt "build/.zip/"
|
|
|
|
@cp -a LICENSE.txt "build/.zip/"
|
2017-08-22 22:46:29 +03:00
|
|
|
cd build/.zip && zip -v -X -r "../../build/.zip.zip" * >/dev/null && cd ../..
|
2017-08-22 10:05:20 +03:00
|
|
|
@rm -rf build/.zip
|
|
|
|
|
2017-08-22 22:46:29 +03:00
|
|
|
# zip
|
2017-09-19 01:58:34 +03:00
|
|
|
build/release/Inter-UI-%.zip: build/.zip.zip
|
2017-08-22 22:46:29 +03:00
|
|
|
@mkdir -p "$(shell dirname "$@")"
|
|
|
|
@mv -f "$<" "$@"
|
|
|
|
@echo write "$@"
|
|
|
|
|
|
|
|
zip: ${ZIP_FILE_DEV}
|
2017-09-25 20:38:15 +03:00
|
|
|
zip_dist: pre_dist ${ZIP_FILE_DIST}
|
2017-08-22 22:46:29 +03:00
|
|
|
|
2017-08-24 10:45:10 +03:00
|
|
|
pre_dist:
|
2017-08-22 22:46:29 +03:00
|
|
|
@echo "Creating distribution for version ${VERSION}"
|
|
|
|
@if [ -f "${ZIP_FILE_DIST}" ]; \
|
|
|
|
then echo "${ZIP_FILE_DIST} already exists. Bump version or remove the zip file to continue." >&2; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2017-09-25 20:38:15 +03:00
|
|
|
|
2017-09-23 22:53:02 +03:00
|
|
|
dist: pre_dist zip_dist
|
|
|
|
$(MAKE) glyphinfo copy_docs_fonts -j8
|
2017-08-22 23:11:06 +03:00
|
|
|
misc/versionize-css.py
|
2017-08-22 22:46:29 +03:00
|
|
|
@echo "——————————————————————————————————————————————————————————————————"
|
|
|
|
@echo ""
|
2017-09-12 08:42:54 +03:00
|
|
|
@echo "Next steps:"
|
|
|
|
@echo ""
|
|
|
|
@echo "1) Commit & push changes"
|
|
|
|
@echo ""
|
|
|
|
@echo "2) Create new release with ${ZIP_FILE_DIST} at"
|
2017-09-19 01:58:34 +03:00
|
|
|
@echo " https://github.com/rsms/inter/releases/new?tag=v${VERSION}"
|
2017-08-22 22:46:29 +03:00
|
|
|
@echo ""
|
2017-09-12 08:42:54 +03:00
|
|
|
@echo "3) Bump version in src/fontbuild.cfg and commit"
|
2017-08-22 22:46:29 +03:00
|
|
|
@echo ""
|
|
|
|
@echo "——————————————————————————————————————————————————————————————————"
|
|
|
|
|
2017-09-12 08:42:54 +03:00
|
|
|
copy_docs_fonts:
|
|
|
|
rm -rf docs/font-files
|
|
|
|
mkdir docs/font-files
|
2017-09-23 20:14:17 +03:00
|
|
|
cp -a build/dist-unhinted/*.woff build/dist-unhinted/*.woff2 build/dist-unhinted/*.otf docs/font-files/
|
2017-09-12 08:42:54 +03:00
|
|
|
|
2017-09-23 20:14:17 +03:00
|
|
|
install_ttf: all_ttf_unhinted
|
2017-11-27 07:26:15 +03:00
|
|
|
$(MAKE) all_web -j
|
2017-09-19 01:58:34 +03:00
|
|
|
@echo "Installing TTF files locally at ~/Library/Fonts/Inter UI"
|
|
|
|
rm -rf ~/'Library/Fonts/Inter UI'
|
|
|
|
mkdir -p ~/'Library/Fonts/Inter UI'
|
2017-09-23 20:14:17 +03:00
|
|
|
cp -va build/dist-unhinted/*.ttf ~/'Library/Fonts/Inter UI'
|
|
|
|
|
|
|
|
install_ttf_hinted: all_ttf
|
2017-11-27 07:26:15 +03:00
|
|
|
$(MAKE) all_web -j
|
2017-09-23 20:14:17 +03:00
|
|
|
@echo "Installing autohinted TTF files locally at ~/Library/Fonts/Inter UI"
|
|
|
|
rm -rf ~/'Library/Fonts/Inter UI'
|
|
|
|
mkdir -p ~/'Library/Fonts/Inter UI'
|
|
|
|
cp -va build/dist-hinted/*.ttf ~/'Library/Fonts/Inter UI'
|
2017-08-22 10:05:20 +03:00
|
|
|
|
2017-11-27 07:26:15 +03:00
|
|
|
install_otf: all_otf
|
|
|
|
$(MAKE) all_web -j
|
2017-09-19 01:58:34 +03:00
|
|
|
@echo "Installing OTF files locally at ~/Library/Fonts/Inter UI"
|
|
|
|
rm -rf ~/'Library/Fonts/Inter UI'
|
|
|
|
mkdir -p ~/'Library/Fonts/Inter UI'
|
|
|
|
cp -va build/dist-unhinted/*.otf ~/'Library/Fonts/Inter UI'
|
2017-08-22 10:05:20 +03:00
|
|
|
|
2017-09-23 22:19:01 +03:00
|
|
|
install: install_otf
|
2017-08-22 10:05:20 +03:00
|
|
|
|
2017-08-28 12:36:40 +03:00
|
|
|
|
|
|
|
glyphinfo: docs/lab/glyphinfo.json docs/glyphs/metrics.json
|
|
|
|
|
2017-09-19 01:58:34 +03:00
|
|
|
src/glyphorder.txt: src/Inter-UI-Regular.ufo/lib.plist src/Inter-UI-Black.ufo/lib.plist src/diacritics.txt misc/gen-glyphorder.py
|
|
|
|
misc/gen-glyphorder.py src/Inter-UI-*.ufo > src/glyphorder.txt
|
2017-08-28 12:36:40 +03:00
|
|
|
|
2017-09-25 05:38:30 +03:00
|
|
|
docs/lab/glyphinfo.json: _local/UnicodeData.txt src/glyphorder.txt src/fontbuild.cfg misc/gen-glyphinfo.py
|
2017-08-22 10:05:20 +03:00
|
|
|
misc/gen-glyphinfo.py -ucd _local/UnicodeData.txt \
|
2017-09-19 01:58:34 +03:00
|
|
|
src/Inter-UI-*.ufo > docs/lab/glyphinfo.json
|
2017-08-22 10:05:20 +03:00
|
|
|
|
2017-09-25 05:38:30 +03:00
|
|
|
docs/glyphs/metrics.json: src/glyphorder.txt src/fontbuild.cfg misc/gen-metrics-and-svgs.py $(Regular_ufo_d)
|
2017-09-19 01:58:34 +03:00
|
|
|
misc/gen-metrics-and-svgs.py -f src/Inter-UI-Regular.ufo
|
2017-08-28 12:36:40 +03:00
|
|
|
|
|
|
|
|
2017-08-22 10:05:20 +03:00
|
|
|
# Download latest Unicode data
|
|
|
|
_local/UnicodeData.txt:
|
|
|
|
@mkdir -p _local
|
|
|
|
curl -s '-#' -o "$@" \
|
|
|
|
http://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
|
|
|
|
|
|
|
|
clean:
|
2017-09-25 20:49:37 +03:00
|
|
|
rm -rf build/tmp/* build/dist-hinted build/dist-unhinted
|
2017-08-22 10:05:20 +03:00
|
|
|
|
2017-09-23 20:14:17 +03:00
|
|
|
.PHONY: all web clean install install_otf install_ttf deploy zip zip_dist pre_dist dist glyphinfo copy_docs_fonts all_hinted
|