Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 21332a3

Browse files
committed
Add Makefile to make PDF
1 parent 17ebe56 commit 21332a3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

manuscript/Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.DEFAULT_GOAL:=main.pdf
2+
3+
.PHONY: clean
4+
clean:
5+
git clean -fx main*
6+
7+
%.aux: %.tex
8+
pdflatex $<
9+
10+
%.bbl: %.aux *.bib
11+
bibtex $(basename $@)
12+
13+
%.pdf: %.tex %.bbl
14+
pdflatex $<
15+
pdflatex $<

0 commit comments

Comments
 (0)