blob: 0088b67d614d2409836895132b337502a6581f62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
all: build/cheatsheet.pdf
build/cheatsheet.pdf: cheatsheet.tex $(wildcard src/*.tex) $(wildcard src/**/*.tex) $(wildcard *.sty) $(wildcard *.bib) $(wildcard fig/*.*)
mkdir -p build && tectonic --print -o build $<
fmt: cheatsheet.bib
bibtex-tidy --align 0 --duplicates --curly --wrap 100 --numeric --remove-empty-fields --sort --sort-fields --space 4 --trailing-commas --no-backup $<
clean:
rm build/*.*
.PHONY: clean fmt
|