blob: f8526eddb7828e61b139057c99a32506fce9d224 (
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 -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
|