From d8650d106322aa5ed0f1fb60d881e1704567f68d Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Fri, 22 May 2020 23:05:18 +0100 Subject: [PATCH] Add "install-local" rule to Makefile It installs into $HOME/.fonts, which is useful to me at least. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 9cf9703..3593856 100644 --- a/Makefile +++ b/Makefile @@ -73,6 +73,11 @@ bedstead-complement.pdf: bedstead-complement.ps bedstead.otf Fontmap clean: rm -f bedstead *.sfd *.otf *.bdf *.png *.pdf bedstead-complement.ps +.PHONY: install-user +install-user: $(OTFFILES) + install -d "$${HOME}"/.fonts + install -m 644 $(OTFFILES) "$${HOME}"/.fonts + .PHONY: dist dist: $(DISTFILES) -- 2.30.2