Initial commit
This commit is contained in:
parent
f2c7387637
commit
6dd75fd080
4 changed files with 515 additions and 461 deletions
19
ma/Makefile
Normal file
19
ma/Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
SHELL := bash
|
||||
.ONESHELL:
|
||||
.SHELLFLAGS := -eu -o pipefail -c
|
||||
.DELETE_ON_ERROR:
|
||||
MAKEFLAGS += --warn-undefined-variables
|
||||
MAKEFLAGS += --no-builtin-rules
|
||||
|
||||
all: safety_reset.pdf
|
||||
|
||||
%.pdf: %.tex %.bib
|
||||
pdflatex $<
|
||||
biber $*
|
||||
pdflatex $<
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f safety_reset.aux safety_reset.bbl safety_reset.bcf safety_reset.log safety_reset.blg
|
||||
rm -f safety_reset.out safety_reset.run.xml texput.log
|
||||
Loading…
Add table
Add a link
Reference in a new issue