mirror of
https://github.com/rsms/inter.git
synced 2024-11-05 03:25:15 +03:00
9aa6cd640a
- uses TTC bundle for static fonts (#388) - second zip archive used for "extras", with individiual static font files - new help documentation, replacing all .txt files of past distributions
701 lines
27 KiB
Makefile
701 lines
27 KiB
Makefile
# List all targets with 'make list'
|
|
SRCDIR := $(abspath $(lastword $(MAKEFILE_LIST))/..)
|
|
FONTDIR := build/fonts
|
|
UFODIR := build/ufo
|
|
BIN := $(SRCDIR)/build/venv/bin
|
|
VENV := build/venv/bin/activate
|
|
VERSION := $(shell cat version.txt)
|
|
MAKEFILE := $(lastword $(MAKEFILE_LIST))
|
|
|
|
export PATH := $(BIN):$(PATH)
|
|
|
|
default: all
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# intermediate sources
|
|
|
|
$(UFODIR)/%.glyphs: src/%.glyphspackage | $(UFODIR) venv
|
|
. $(VENV) ; build/venv/bin/glyphspkg -o $(dir $@) $^
|
|
|
|
# features
|
|
build/features_data: $(UFODIR)/features $(wildcard src/features/*)
|
|
touch "$@"
|
|
$(UFODIR)/features:
|
|
@mkdir -p $(UFODIR)
|
|
@rm -f $(UFODIR)/features
|
|
@ln -s ../../src/features $(UFODIR)/features
|
|
|
|
# designspace & master UFOs
|
|
$(UFODIR)/%.designspace: $(UFODIR)/%.glyphs $(UFODIR)/features | venv
|
|
. $(VENV) ; fontmake -o ufo -g $< --designspace-path $@ \
|
|
--master-dir $(UFODIR) --instance-dir $(UFODIR)
|
|
. $(VENV) ; python misc/tools/postprocess-designspace.py $@
|
|
|
|
# instance UFOs from designspace
|
|
$(UFODIR)/Inter-%Italic.ufo: $(UFODIR)/Inter-Italic.designspace | venv
|
|
. $(VENV) ; bash misc/tools/gen-instance-ufo.sh $< $@
|
|
$(UFODIR)/Inter-%.ufo: $(UFODIR)/Inter-Roman.designspace | venv
|
|
. $(VENV) ; bash misc/tools/gen-instance-ufo.sh $< $@
|
|
|
|
# designspace & master UFOs (for editing)
|
|
build/ufo-editable/%.designspace: $(UFODIR)/%.glyphs $(UFODIR)/features | venv
|
|
@mkdir -p $(dir $@)
|
|
. $(VENV) ; fontmake -o ufo -g $< --designspace-path $@ \
|
|
--master-dir $(dir $@) --instance-dir $(dir $@)
|
|
. $(VENV) ; python misc/tools/postprocess-designspace.py --editable $@
|
|
|
|
# instance UFOs from designspace (for editing)
|
|
build/ufo-editable/Inter-%Italic.ufo: build/ufo-editable/Inter-Italic.designspace | venv
|
|
. $(VENV) ; bash misc/tools/gen-instance-ufo.sh $< $@
|
|
build/ufo-editable/Inter-%.ufo: build/ufo-editable/Inter-Roman.designspace | venv
|
|
. $(VENV) ; bash misc/tools/gen-instance-ufo.sh $< $@
|
|
|
|
editable-ufos: build/ufo-editable/.ok
|
|
@echo "Editable designspace & UFOs can be found here:"
|
|
@echo " $(PWD)/build/ufo-editable"
|
|
|
|
build/ufo-editable/.ok: build/ufo-editable/Inter-Roman.designspace build/ufo-editable/Inter-Italic.designspace
|
|
@rm -f build/ufo-editable/features
|
|
@ln -s ../../src/features build/ufo-editable/features
|
|
$(MAKE) \
|
|
build/ufo-editable/Inter-Light.ufo \
|
|
build/ufo-editable/Inter-ExtraLight.ufo \
|
|
build/ufo-editable/Inter-Medium.ufo \
|
|
build/ufo-editable/Inter-SemiBold.ufo \
|
|
build/ufo-editable/Inter-Bold.ufo \
|
|
build/ufo-editable/Inter-ExtraBold.ufo \
|
|
\
|
|
build/ufo-editable/Inter-LightItalic.ufo \
|
|
build/ufo-editable/Inter-ExtraLightItalic.ufo \
|
|
build/ufo-editable/Inter-MediumItalic.ufo \
|
|
build/ufo-editable/Inter-SemiBoldItalic.ufo \
|
|
build/ufo-editable/Inter-BoldItalic.ufo \
|
|
build/ufo-editable/Inter-ExtraBoldItalic.ufo \
|
|
\
|
|
build/ufo-editable/Inter-DisplayLight.ufo \
|
|
build/ufo-editable/Inter-DisplayExtraLight.ufo \
|
|
build/ufo-editable/Inter-DisplayMedium.ufo \
|
|
build/ufo-editable/Inter-DisplaySemiBold.ufo \
|
|
build/ufo-editable/Inter-DisplayBold.ufo \
|
|
build/ufo-editable/Inter-DisplayExtraBold.ufo \
|
|
\
|
|
build/ufo-editable/Inter-DisplayLightItalic.ufo \
|
|
build/ufo-editable/Inter-DisplayExtraLightItalic.ufo \
|
|
build/ufo-editable/Inter-DisplayMediumItalic.ufo \
|
|
build/ufo-editable/Inter-DisplaySemiBoldItalic.ufo \
|
|
build/ufo-editable/Inter-DisplayBoldItalic.ufo \
|
|
build/ufo-editable/Inter-DisplayExtraBoldItalic.ufo
|
|
@touch $@
|
|
@echo ""
|
|
|
|
# make sure intermediate files are not rm'd by make
|
|
.PRECIOUS: \
|
|
$(UFODIR)/Inter-Black.ufo \
|
|
$(UFODIR)/Inter-Regular.ufo \
|
|
$(UFODIR)/Inter-Thin.ufo \
|
|
$(UFODIR)/Inter-Light.ufo \
|
|
$(UFODIR)/Inter-ExtraLight.ufo \
|
|
$(UFODIR)/Inter-Medium.ufo \
|
|
$(UFODIR)/Inter-SemiBold.ufo \
|
|
$(UFODIR)/Inter-Bold.ufo \
|
|
$(UFODIR)/Inter-ExtraBold.ufo \
|
|
\
|
|
$(UFODIR)/Inter-BlackItalic.ufo \
|
|
$(UFODIR)/Inter-Italic.ufo \
|
|
$(UFODIR)/Inter-ThinItalic.ufo \
|
|
$(UFODIR)/Inter-LightItalic.ufo \
|
|
$(UFODIR)/Inter-ExtraLightItalic.ufo \
|
|
$(UFODIR)/Inter-MediumItalic.ufo \
|
|
$(UFODIR)/Inter-SemiBoldItalic.ufo \
|
|
$(UFODIR)/Inter-BoldItalic.ufo \
|
|
$(UFODIR)/Inter-ExtraBoldItalic.ufo \
|
|
\
|
|
$(UFODIR)/Inter-DisplayBlack.ufo \
|
|
$(UFODIR)/Inter-Display.ufo \
|
|
$(UFODIR)/Inter-DisplayThin.ufo \
|
|
$(UFODIR)/Inter-DisplayLight.ufo \
|
|
$(UFODIR)/Inter-DisplayExtraLight.ufo \
|
|
$(UFODIR)/Inter-DisplayMedium.ufo \
|
|
$(UFODIR)/Inter-DisplaySemiBold.ufo \
|
|
$(UFODIR)/Inter-DisplayBold.ufo \
|
|
$(UFODIR)/Inter-DisplayExtraBold.ufo \
|
|
\
|
|
$(UFODIR)/Inter-DisplayBlackItalic.ufo \
|
|
$(UFODIR)/Inter-DisplayItalic.ufo \
|
|
$(UFODIR)/Inter-DisplayThinItalic.ufo \
|
|
$(UFODIR)/Inter-DisplayLightItalic.ufo \
|
|
$(UFODIR)/Inter-DisplayExtraLightItalic.ufo \
|
|
$(UFODIR)/Inter-DisplayMediumItalic.ufo \
|
|
$(UFODIR)/Inter-DisplaySemiBoldItalic.ufo \
|
|
$(UFODIR)/Inter-DisplayBoldItalic.ufo \
|
|
$(UFODIR)/Inter-DisplayExtraBoldItalic.ufo \
|
|
\
|
|
$(UFODIR)/Inter-Roman.glyphs \
|
|
$(UFODIR)/Inter-Italic.glyphs \
|
|
$(UFODIR)/Inter-Roman.designspace \
|
|
$(UFODIR)/Inter-Italic.designspace
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# products
|
|
|
|
# arguments to fontmake
|
|
FM_ARGS := \
|
|
--overlaps-backend pathops \
|
|
--flatten-components
|
|
ifeq (DEBUG,)
|
|
FM_ARGS += --production-names --verbose WARNING
|
|
else
|
|
FM_ARGS += --no-production-names
|
|
endif
|
|
|
|
$(FONTDIR)/static/Inter-Displa%.otf: $(UFODIR)/Inter-Displa%.ufo build/features_data | $(FONTDIR)/static venv
|
|
. $(VENV) ; fontmake -u $< -o otf --output-path $@ $(FM_ARGS)
|
|
. $(VENV) ; python misc/tools/fix-static-display-names.py $@
|
|
|
|
$(FONTDIR)/static/%.otf: $(UFODIR)/%.ufo build/features_data | $(FONTDIR)/static venv
|
|
. $(VENV) ; fontmake -u $< -o otf --output-path $@ $(FM_ARGS)
|
|
|
|
|
|
$(FONTDIR)/static/Inter-Displa%.ttf: $(UFODIR)/Inter-Displa%.ufo build/features_data | $(FONTDIR)/static venv
|
|
. $(VENV) ; fontmake -u $< -o ttf --output-path $@ $(FM_ARGS)
|
|
. $(VENV) ; python misc/tools/fix-static-display-names.py $@
|
|
|
|
$(FONTDIR)/static/%.ttf: $(UFODIR)/%.ufo build/features_data | $(FONTDIR)/static venv
|
|
. $(VENV) ; fontmake -u $< -o ttf --output-path $@ $(FM_ARGS)
|
|
|
|
|
|
$(FONTDIR)/static-hinted/%.ttf: $(FONTDIR)/static/%.ttf | $(FONTDIR)/static-hinted venv
|
|
. $(VENV) ; python -m ttfautohint --no-info "$<" "$@"
|
|
|
|
$(FONTDIR)/var/_%.var.ttf: $(UFODIR)/%.designspace build/features_data | $(FONTDIR)/var venv
|
|
. $(VENV) ; fontmake -o variable -m $< --output-path $@ $(FM_ARGS)
|
|
|
|
$(FONTDIR)/var/_%.var.otf: $(UFODIR)/%.designspace build/features_data | $(FONTDIR)/var venv
|
|
. $(VENV) ; fontmake -o variable-cff2 -m $< --output-path $@ $(FM_ARGS)
|
|
|
|
%.woff2: %.ttf | venv
|
|
. $(VENV) ; misc/tools/woff2 compress -o "$@" "$<"
|
|
|
|
$(FONTDIR)/static:
|
|
mkdir -p $@
|
|
$(FONTDIR)/static-hinted:
|
|
mkdir -p $@
|
|
$(FONTDIR)/var:
|
|
mkdir -p $@
|
|
$(UFODIR):
|
|
mkdir -p $@
|
|
|
|
# roman + italic with STAT
|
|
$(FONTDIR)/var/inter-roman-and-italic.stamp: \
|
|
$(FONTDIR)/var/_Inter-Roman.var.ttf \
|
|
$(FONTDIR)/var/_Inter-Italic.var.ttf \
|
|
| venv
|
|
@#. $(VENV) ; python misc/tools/postprocess-vf2.py $^
|
|
mkdir $(FONTDIR)/var/gen-stat
|
|
. $(VENV) ; gftools gen-stat --out $(FONTDIR)/var/gen-stat $^
|
|
mv $(FONTDIR)/var/gen-stat/_Inter-Roman.var.ttf $(FONTDIR)/var/Inter.var.ttf
|
|
mv $(FONTDIR)/var/gen-stat/_Inter-Italic.var.ttf $(FONTDIR)/var/Inter-Italic.var.ttf
|
|
rm -rf $(FONTDIR)/var/gen-stat
|
|
touch $@
|
|
|
|
$(FONTDIR)/var/Inter.var.ttf: $(FONTDIR)/var/inter-roman-and-italic.stamp
|
|
touch $@
|
|
$(FONTDIR)/var/Inter-Italic.var.ttf: $(FONTDIR)/var/inter-roman-and-italic.stamp
|
|
touch $@
|
|
|
|
$(FONTDIR)/var/InterV.var.ttf: $(FONTDIR)/var/Inter.var.ttf | venv
|
|
. $(VENV) ; python misc/tools/rename.py --family "Inter Variable" -o $@ $<
|
|
$(FONTDIR)/var/InterV-Italic.var.ttf: $(FONTDIR)/var/Inter-Italic.var.ttf | venv
|
|
. $(VENV) ; python misc/tools/rename.py --family "Inter Variable" -o $@ $<
|
|
|
|
var: \
|
|
$(FONTDIR)/var/Inter.var.ttf \
|
|
$(FONTDIR)/var/Inter-Italic.var.ttf \
|
|
$(FONTDIR)/var/InterV.var.ttf \
|
|
$(FONTDIR)/var/InterV-Italic.var.ttf
|
|
|
|
var_web: \
|
|
$(FONTDIR)/var/Inter.var.woff2 \
|
|
$(FONTDIR)/var/Inter-Italic.var.woff2
|
|
|
|
web: var_web static_web
|
|
|
|
static: \
|
|
$(FONTDIR)/static/Inter.ttc \
|
|
$(FONTDIR)/static-hinted/Inter-truetype.ttc
|
|
|
|
$(FONTDIR)/static/Inter.ttc: \
|
|
$(FONTDIR)/static/Inter-Regular.otf \
|
|
$(FONTDIR)/static/Inter-Black.otf \
|
|
$(FONTDIR)/static/Inter-BlackItalic.otf \
|
|
$(FONTDIR)/static/Inter-Italic.otf \
|
|
$(FONTDIR)/static/Inter-Thin.otf \
|
|
$(FONTDIR)/static/Inter-ThinItalic.otf \
|
|
$(FONTDIR)/static/Inter-Light.otf \
|
|
$(FONTDIR)/static/Inter-LightItalic.otf \
|
|
$(FONTDIR)/static/Inter-ExtraLight.otf \
|
|
$(FONTDIR)/static/Inter-ExtraLightItalic.otf \
|
|
$(FONTDIR)/static/Inter-Medium.otf \
|
|
$(FONTDIR)/static/Inter-MediumItalic.otf \
|
|
$(FONTDIR)/static/Inter-SemiBold.otf \
|
|
$(FONTDIR)/static/Inter-SemiBoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-Bold.otf \
|
|
$(FONTDIR)/static/Inter-BoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-ExtraBold.otf \
|
|
$(FONTDIR)/static/Inter-ExtraBoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayBlack.otf \
|
|
$(FONTDIR)/static/Inter-DisplayBlackItalic.otf \
|
|
$(FONTDIR)/static/Inter-Display.otf \
|
|
$(FONTDIR)/static/Inter-DisplayItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayThin.otf \
|
|
$(FONTDIR)/static/Inter-DisplayThinItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayLight.otf \
|
|
$(FONTDIR)/static/Inter-DisplayLightItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraLight.otf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraLightItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayMedium.otf \
|
|
$(FONTDIR)/static/Inter-DisplayMediumItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplaySemiBold.otf \
|
|
$(FONTDIR)/static/Inter-DisplaySemiBoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayBold.otf \
|
|
$(FONTDIR)/static/Inter-DisplayBoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraBold.otf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraBoldItalic.otf
|
|
. $(VENV) ; python -m fontTools.ttLib.__init__ -o $@ $^
|
|
|
|
$(FONTDIR)/static-hinted/Inter-truetype.ttc: \
|
|
$(FONTDIR)/static-hinted/Inter-Regular.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Black.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-BlackItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Italic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Thin.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ThinItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Light.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-LightItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraLight.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraLightItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Medium.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-MediumItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-SemiBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-SemiBoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Bold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-BoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraBoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBlack.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBlackItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Display.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayThin.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayThinItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayLight.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayLightItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraLight.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraLightItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayMedium.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayMediumItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplaySemiBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplaySemiBoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraBoldItalic.ttf
|
|
. $(VENV) ; python -m fontTools.ttLib.__init__ -o $@ $^
|
|
|
|
static_otf: \
|
|
$(FONTDIR)/static/Inter-Black.otf \
|
|
$(FONTDIR)/static/Inter-BlackItalic.otf \
|
|
$(FONTDIR)/static/Inter-Regular.otf \
|
|
$(FONTDIR)/static/Inter-Italic.otf \
|
|
$(FONTDIR)/static/Inter-Thin.otf \
|
|
$(FONTDIR)/static/Inter-ThinItalic.otf \
|
|
$(FONTDIR)/static/Inter-Light.otf \
|
|
$(FONTDIR)/static/Inter-LightItalic.otf \
|
|
$(FONTDIR)/static/Inter-ExtraLight.otf \
|
|
$(FONTDIR)/static/Inter-ExtraLightItalic.otf \
|
|
$(FONTDIR)/static/Inter-Medium.otf \
|
|
$(FONTDIR)/static/Inter-MediumItalic.otf \
|
|
$(FONTDIR)/static/Inter-SemiBold.otf \
|
|
$(FONTDIR)/static/Inter-SemiBoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-Bold.otf \
|
|
$(FONTDIR)/static/Inter-BoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-ExtraBold.otf \
|
|
$(FONTDIR)/static/Inter-ExtraBoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayBlack.otf \
|
|
$(FONTDIR)/static/Inter-DisplayBlackItalic.otf \
|
|
$(FONTDIR)/static/Inter-Display.otf \
|
|
$(FONTDIR)/static/Inter-DisplayItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayThin.otf \
|
|
$(FONTDIR)/static/Inter-DisplayThinItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayLight.otf \
|
|
$(FONTDIR)/static/Inter-DisplayLightItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraLight.otf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraLightItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayMedium.otf \
|
|
$(FONTDIR)/static/Inter-DisplayMediumItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplaySemiBold.otf \
|
|
$(FONTDIR)/static/Inter-DisplaySemiBoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayBold.otf \
|
|
$(FONTDIR)/static/Inter-DisplayBoldItalic.otf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraBold.otf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraBoldItalic.otf
|
|
|
|
static_ttf: \
|
|
$(FONTDIR)/static/Inter-Black.ttf \
|
|
$(FONTDIR)/static/Inter-BlackItalic.ttf \
|
|
$(FONTDIR)/static/Inter-Regular.ttf \
|
|
$(FONTDIR)/static/Inter-Italic.ttf \
|
|
$(FONTDIR)/static/Inter-Thin.ttf \
|
|
$(FONTDIR)/static/Inter-ThinItalic.ttf \
|
|
$(FONTDIR)/static/Inter-Light.ttf \
|
|
$(FONTDIR)/static/Inter-LightItalic.ttf \
|
|
$(FONTDIR)/static/Inter-ExtraLight.ttf \
|
|
$(FONTDIR)/static/Inter-ExtraLightItalic.ttf \
|
|
$(FONTDIR)/static/Inter-Medium.ttf \
|
|
$(FONTDIR)/static/Inter-MediumItalic.ttf \
|
|
$(FONTDIR)/static/Inter-SemiBold.ttf \
|
|
$(FONTDIR)/static/Inter-SemiBoldItalic.ttf \
|
|
$(FONTDIR)/static/Inter-Bold.ttf \
|
|
$(FONTDIR)/static/Inter-BoldItalic.ttf \
|
|
$(FONTDIR)/static/Inter-ExtraBold.ttf \
|
|
$(FONTDIR)/static/Inter-ExtraBoldItalic.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayBlack.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayBlackItalic.ttf \
|
|
$(FONTDIR)/static/Inter-Display.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayItalic.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayThin.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayThinItalic.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayLight.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayLightItalic.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraLight.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraLightItalic.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayMedium.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayMediumItalic.ttf \
|
|
$(FONTDIR)/static/Inter-DisplaySemiBold.ttf \
|
|
$(FONTDIR)/static/Inter-DisplaySemiBoldItalic.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayBold.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayBoldItalic.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraBold.ttf \
|
|
$(FONTDIR)/static/Inter-DisplayExtraBoldItalic.ttf
|
|
|
|
static_ttf_hinted: \
|
|
$(FONTDIR)/static-hinted/Inter-Black.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-BlackItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Regular.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Italic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Thin.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ThinItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Light.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-LightItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraLight.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraLightItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Medium.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-MediumItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-SemiBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-SemiBoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Bold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-BoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraBoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBlack.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBlackItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-Display.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayThin.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayThinItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayLight.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayLightItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraLight.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraLightItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayMedium.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayMediumItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplaySemiBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplaySemiBoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBoldItalic.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraBold.ttf \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraBoldItalic.ttf
|
|
|
|
static_web: \
|
|
$(FONTDIR)/static/Inter-Black.woff2 \
|
|
$(FONTDIR)/static/Inter-BlackItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-Regular.woff2 \
|
|
$(FONTDIR)/static/Inter-Italic.woff2 \
|
|
$(FONTDIR)/static/Inter-Thin.woff2 \
|
|
$(FONTDIR)/static/Inter-ThinItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-Light.woff2 \
|
|
$(FONTDIR)/static/Inter-LightItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-ExtraLight.woff2 \
|
|
$(FONTDIR)/static/Inter-ExtraLightItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-Medium.woff2 \
|
|
$(FONTDIR)/static/Inter-MediumItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-SemiBold.woff2 \
|
|
$(FONTDIR)/static/Inter-SemiBoldItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-Bold.woff2 \
|
|
$(FONTDIR)/static/Inter-BoldItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-ExtraBold.woff2 \
|
|
$(FONTDIR)/static/Inter-ExtraBoldItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayBlack.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayBlackItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-Display.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayThin.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayThinItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayLight.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayLightItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayExtraLight.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayExtraLightItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayMedium.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayMediumItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplaySemiBold.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplaySemiBoldItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayBold.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayBoldItalic.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayExtraBold.woff2 \
|
|
$(FONTDIR)/static/Inter-DisplayExtraBoldItalic.woff2
|
|
|
|
static_web_hinted: \
|
|
$(FONTDIR)/static-hinted/Inter-Black.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-BlackItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-Regular.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-Italic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-Thin.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-ThinItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-Light.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-LightItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraLight.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraLightItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-Medium.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-MediumItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-SemiBold.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-SemiBoldItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-Bold.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-BoldItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraBold.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-ExtraBoldItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBlack.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBlackItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-Display.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayThin.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayThinItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayLight.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayLightItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraLight.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraLightItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayMedium.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayMediumItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplaySemiBold.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplaySemiBoldItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBold.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayBoldItalic.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraBold.woff2 \
|
|
$(FONTDIR)/static-hinted/Inter-DisplayExtraBoldItalic.woff2
|
|
|
|
|
|
all: var static web static_otf static_ttf static_ttf_hinted
|
|
|
|
.PHONY: \
|
|
all var var_web web \
|
|
static static_otf static_ttf static_ttf_hinted static_web static_web_hinted
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# testing
|
|
|
|
test: build/fontbakery-report-var.txt \
|
|
build/fontbakery-report-static.txt
|
|
|
|
# FBAKE_ARGS are common args for all fontbakery targets
|
|
FBAKE_ARGS := check-universal \
|
|
--no-colors \
|
|
--no-progress \
|
|
--loglevel WARN \
|
|
--succinct \
|
|
--full-lists \
|
|
-j \
|
|
-x com.google.fonts/check/family/win_ascent_and_descent
|
|
|
|
build/fontbakery-report-var.txt: \
|
|
$(FONTDIR)/var/Inter.var.ttf \
|
|
$(FONTDIR)/var/Inter-Italic.var.ttf \
|
|
| venv
|
|
@echo "fontbakery {Inter,Inter-Italic}.var.ttf > $(@) ..."
|
|
@. $(VENV) ; fontbakery \
|
|
$(FBAKE_ARGS) -x com.google.fonts/check/STAT_strings \
|
|
$^ > $@ \
|
|
|| (cat $@; echo "report at $@"; touch -m -t 199001010000 $@; exit 1)
|
|
|
|
build/fontbakery-report-static.txt: $(wildcard $(FONTDIR)/static/Inter-*.otf) | venv
|
|
@echo "fontbakery static/Inter-*.otf > $(@) ..."
|
|
@. $(VENV) ; fontbakery \
|
|
$(FBAKE_ARGS) -x com.google.fonts/check/family/underline_thickness \
|
|
$^ > $@ \
|
|
|| (cat $@; echo "report at $@"; touch -m -t 199001010000 $@; exit 1)
|
|
|
|
.PHONY: test
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# zip
|
|
|
|
zip: all
|
|
bash misc/makezip2.sh -reveal-in-finder \
|
|
"build/release/Inter-$(VERSION)-$(shell git rev-parse --short=10 HEAD).zip"
|
|
|
|
zip_extras: all
|
|
bash misc/makezip2.sh -extras -reveal-in-finder \
|
|
"build/release/Inter-$(VERSION)-$(shell git rev-parse --short=10 HEAD)-extras.zip"
|
|
|
|
zip_beta: \
|
|
$(FONTDIR)/var/InterV.var.ttf \
|
|
$(FONTDIR)/var/InterV.var.woff2 \
|
|
$(FONTDIR)/var/InterV-Italic.var.ttf \
|
|
$(FONTDIR)/var/InterV-Italic.var.woff2
|
|
mkdir -p build/release
|
|
zip -j -q -X "build/release/Inter_beta-$(VERSION)-$(shell date '+%Y%m%d_%H%M')-$(shell git rev-parse --short=10 HEAD).zip" $^
|
|
|
|
.PHONY: zip zip_beta
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# distribution
|
|
# - preflight checks for existing version archive and dirty git state.
|
|
# - step1 rebuilds from scratch, since font version & ID is based on git hash.
|
|
# - step2 runs tests, then makes a zip archive and updates the website (docs/ dir.)
|
|
|
|
DIST_ZIP = build/release/Inter-${VERSION}.zip
|
|
|
|
dist: dist_preflight
|
|
@# rebuild since font version & ID is based on git hash
|
|
$(MAKE) -f $(MAKEFILE) -j$(nproc) dist_step1
|
|
$(MAKE) -f $(MAKEFILE) -j$(nproc) dist_step2
|
|
$(MAKE) -f $(MAKEFILE) dist_postflight
|
|
|
|
dist_preflight:
|
|
@echo "——————————————————————————————————————————————————————————————————"
|
|
@echo "Creating distribution for version ${VERSION}"
|
|
@echo "——————————————————————————————————————————————————————————————————"
|
|
@# check for existing version archive
|
|
@if [ -f "${DIST_ZIP}" ]; then \
|
|
echo "${DIST_ZIP} already exists. Bump version or rm zip file to continue." >&2; \
|
|
exit 1; \
|
|
fi
|
|
@# check for uncommitted changes
|
|
@git status --short | grep -qv '??' && (\
|
|
echo "Warning: uncommitted changes:" >&2; git status --short | grep -v '??' ;\
|
|
[ -t 1 ] || exit 1 ; \
|
|
printf "Press ENTER to continue or ^C to cancel " ; read X) || true
|
|
@#
|
|
|
|
dist_step1: clean
|
|
$(MAKE) -f $(MAKEFILE) -j$(nproc) all
|
|
|
|
dist_step2: test
|
|
$(MAKE) -f $(MAKEFILE) -j$(nproc) dist_zip dist_docs
|
|
|
|
dist_zip: | venv
|
|
. $(VENV) ; python misc/tools/patch-version.py misc/dist/inter.css
|
|
bash misc/makezip2.sh -reveal-in-finder "$(DIST_ZIP)"
|
|
|
|
dist_docs:
|
|
$(MAKE) -C docs -j$(nproc) dist
|
|
|
|
dist_postflight:
|
|
@echo "——————————————————————————————————————————————————————————————————"
|
|
@echo ""
|
|
@echo "Next steps:"
|
|
@echo ""
|
|
@echo "1) Commit & push changes"
|
|
@echo ""
|
|
@echo "2) Create new release with ${DIST_ZIP} at"
|
|
@echo " https://github.com/rsms/inter/releases/new?tag=v${VERSION}"
|
|
@echo ""
|
|
@echo "3) Bump version in version.txt (to the next future version)"
|
|
@echo " and commit & push changes"
|
|
@echo ""
|
|
@echo "——————————————————————————————————————————————————————————————————"
|
|
|
|
.PHONY: dist dist_preflight dist_step1 dist_step2 dist_zip dist_docs dist_postflight
|
|
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# install
|
|
|
|
INSTALLDIR := $(HOME)/Library/Fonts/Inter
|
|
|
|
install: install_var $(INSTALLDIR)/Inter.ttc
|
|
@# Remove any old pre ttc fonts
|
|
rm -rf $(INSTALLDIR)/Inter*.otf
|
|
|
|
install_var: \
|
|
$(INSTALLDIR)/InterV.var.ttf \
|
|
$(INSTALLDIR)/InterV-Italic.var.ttf
|
|
|
|
$(INSTALLDIR)/%.ttc: $(FONTDIR)/static/%.ttc | $(INSTALLDIR)
|
|
cp -a $^ $@
|
|
|
|
$(INSTALLDIR)/%.otf: $(FONTDIR)/static/%.otf | $(INSTALLDIR)
|
|
cp -a $^ $@
|
|
|
|
$(INSTALLDIR)/%.var.ttf: $(FONTDIR)/var/%.var.ttf | $(INSTALLDIR)
|
|
cp -a $^ $@
|
|
|
|
$(INSTALLDIR):
|
|
mkdir -p $@
|
|
|
|
.PHONY: install install_var
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# misc
|
|
|
|
clean:
|
|
rm -rf build/tmp build/fonts build/ufo build/googlefonts
|
|
|
|
docs:
|
|
$(MAKE) -C docs serve
|
|
|
|
# update_ucd downloads the latest Unicode data (Nothing depends on this target)
|
|
ucd_version := 12.1.0
|
|
update_ucd:
|
|
@echo "# Unicode $(ucd_version)" > misc/UnicodeData.txt
|
|
curl '-#' "https://www.unicode.org/Public/$(ucd_version)/ucd/UnicodeData.txt" \
|
|
>> misc/UnicodeData.txt
|
|
|
|
.PHONY: clean docs update_ucd
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# list make targets
|
|
#
|
|
# We copy the Makefile (first in MAKEFILE_LIST) and disable the include to only list
|
|
# primary targets, avoiding the generated targets.
|
|
list:
|
|
@mkdir -p build/etc \
|
|
&& cat $(MAKEFILE) \
|
|
| sed 's/include /#include /g' > build/etc/Makefile-list \
|
|
&& $(MAKE) -pRrq -f build/etc/Makefile-list : 2>/dev/null \
|
|
| awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' \
|
|
| sort \
|
|
| egrep -v -e '^_|/' \
|
|
| egrep -v -e '^[^[:alnum:]]' -e '^$@$$'
|
|
|
|
.PHONY: list
|
|
|
|
# ---------------------------------------------------------------------------------
|
|
# initialize toolchain
|
|
|
|
venv: build/venv/config2.stamp
|
|
|
|
build/venv/config2.stamp: Pipfile.lock Pipfile
|
|
@mkdir -p build
|
|
[ ! -f build/venv/config.stamp ] || rm -rf build/venv
|
|
[ -d build/venv ] || python3 -m venv build/venv
|
|
. $(VENV) ; pip install pipenv
|
|
. $(VENV) ; pipenv install
|
|
touch $@
|
|
|
|
venv-update:
|
|
. $(VENV) ; pipenv update
|
|
|
|
reset: clean
|
|
rm -rf build/venv
|
|
|
|
.PHONY: venv venv-update reset
|