]> Lady’s Gitweb - OldStandard/blobdiff - makefile
moved up the section about documentation in oldstandard.tex
[OldStandard] / makefile
index b03424f1aa0a89ed4157b089a5a0ca112a4b5d7f..c19afb8dcab45d7e400178b986e14bebe102cf73 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,24 +1,31 @@
-pkg := oldstandard-t
+pkg := oldstandard
 ver  := $(shell grep '\\edef\\pkgver' $(pkg).tex | grep -Eo '[0-9]?\.[0-9]?')
 TEXMFDIR := $(shell kpsewhich -expand-var='$$TEXMFHOME')
 HOMEDIR := $$HOME
+LOCALFONTDIR := $(HOMEDIR)/.local/share/fonts
 
-doc: clean
+doc: local
        lualatex --shell-escape $(pkg).tex
        biber $(pkg)
        lualatex --shell-escape $(pkg).tex
        lualatex --shell-escape $(pkg).tex
 
-all: clean doc
+all: doc
 
-package: clean doc
+local: clean
+       cp otf/OldStandard-*.otf $(LOCALFONTDIR)/
+       luaotfload-tool --update
+
+package: doc
        mkdir $(pkg)
        cp *.{txt,md,tex,pdf} $(pkg)
        cp otf/*.otf $(pkg)
        tar czf $(pkg)-$(ver).tar.gz $(pkg)
 
 clean:
+       rm -f $(LOCALFONTDIR)/OldStandard-*.otf
+       luaotfload-tool --update
        git clean -df
        pandoc README.md -o about.html
 
-.PHONY: doc all package clean
+.PHONY: doc all local package clean
This page took 0.019777 seconds and 4 git commands to generate.