From 853d222a22d868ebf4bc7cac9f61682dc98fba62 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 18 Oct 2023 20:56:34 -0400 Subject: [PATCH] Makefile.am: add rule to build woff2 fonts from sfd sources --- Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.am b/Makefile.am index 04406ba..db4ea90 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,6 +31,10 @@ day.min.svg: day.svg --error-on-flowtext \ $< > $@ +# Use FontForge to convert the sfd source files to woff2. +.sfd.woff2: + @FONTFORGE@ -script sfd2woff $< + # Base64-encode a woff2 (web open font format 2.0) file. We use this # to embed fonts directly into the CSS that requires them. .woff2.base64: -- 2.44.2