argon2-sys 0.1.0

Bindings to the argon2 C reference implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
TEX = pdflatex
BIB = bibtex

PROJECT = argon2-specs

.PHONY: all clean update

all:
	$(TEX) $(PROJECT).tex
	$(BIB) $(PROJECT).aux
	$(TEX) $(PROJECT).tex
	$(TEX) $(PROJECT).tex

clean:
	rm -rf *.aux *.bbl *.blg *.log *.out *.pdf *.toc *~

update:
	mv $(PROJECT).pdf ./../$(PROJECT).pdf