]> Lady’s Gitweb - OldStandard/blob - makefile
added makefile
[OldStandard] / makefile
1 pkg=oldstandard-t
2 TEXMFDIR := $(shell kpsewhich -expand-var='$$TEXMFHOME')
3 HOMEDIR := $$HOME
4
5 doc: clean
6 lualatex --shell-escape $(pkg).tex
7 biber $(pkg)
8 lualatex --shell-escape $(pkg).tex
9 lualatex --shell-escape $(pkg).tex
10
11 all: clean doc
12
13 package: clean doc
14 mkdir $(pkg)
15 cp *.{txt,md,tex,pdf} $(pkg)
16 cp otf/*.otf $(pkg)
17 tar czf $(pkg).tar.gz $(pkg)
18
19 clean:
20 git clean -df
21 pandoc README.md -o about.html
22
23 .PHONY: doc all package clean
This page took 0.476328 seconds and 5 git commands to generate.