Generate OTF (quads, not cff) for VF, rename upright to roman and add googlefonts makefile target

This commit is contained in:
Rasmus Andersson 2019-10-22 07:55:36 -07:00
parent 4ca248c6c8
commit bc8b267b01
10 changed files with 63 additions and 20 deletions

14
init.sh
View file

@ -522,6 +522,20 @@ else
# done
# echo "" >> "$GEN_MAKE_FILE"
# googlefonts_all target
echo -n "googlefonts_all:" >> "$GEN_MAKE_FILE"
echo -n " build/googlefonts/var/Inter.var.otf" >> "$GEN_MAKE_FILE"
echo -n " build/googlefonts/var/Inter.var.woff2" >> "$GEN_MAKE_FILE"
echo -n " build/googlefonts/var/Inter-roman.var.otf" >> "$GEN_MAKE_FILE"
echo -n " build/googlefonts/var/Inter-roman.var.woff2" >> "$GEN_MAKE_FILE"
echo -n " build/googlefonts/var/Inter-italic.var.otf" >> "$GEN_MAKE_FILE"
echo -n " build/googlefonts/var/Inter-italic.var.woff2" >> "$GEN_MAKE_FILE"
for style in "${all_styles[@]}"; do
echo -n " build/googlefonts/const/Inter-${style}.otf" >> "$GEN_MAKE_FILE"
echo -n " build/googlefonts/const/Inter-${style}.woff2" >> "$GEN_MAKE_FILE"
done
echo "" >> "$GEN_MAKE_FILE"
echo -n ".PHONY: all_otf all_ttf_hinted all_ttf all_web all_web_hinted all_ufo all_check_const" >> "$GEN_MAKE_FILE"
for style in "${all_styles[@]}"; do