23 lines
413 B
Makefile
23 lines
413 B
Makefile
PAPER=paper
|
|
|
|
all: ${PAPER}.pdf
|
|
|
|
compiled/pearl_scrbl.zo: *.rkt *.scrbl
|
|
raco make -v $(PAPER).scrbl
|
|
|
|
${PAPER}.pdf: pkg setup texstyle.tex
|
|
scribble ++extra mathpartir.sty ++style texstyle.tex --pdf $(PAPER).scrbl
|
|
|
|
${PAPER}.tex: pkg setup texstyle.tex
|
|
scribble ++style texstyle.tex --latex $(PAPER).scrbl
|
|
|
|
pkg:
|
|
raco pkg install --skip-installed trivial
|
|
|
|
setup:
|
|
raco make ${PAPER}.scrbl
|
|
|
|
clean:
|
|
rm -r compiled
|
|
|