aboutsummaryrefslogtreecommitdiff
path: root/stanzione/Makefile
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2022-02-10 01:12:45 -0500
committerHolden Rohrer <hr@hrhr.dev>2022-02-10 01:12:45 -0500
commit89862ae6a0554870a7708ae73112f86d2d21fc8d (patch)
treef81c5fb1a69b34687fc79d6fd6ca336411cf4777 /stanzione/Makefile
parent6ce1db1f867c545ebdb1afb705580514b356f883 (diff)
new teachers, new work
Diffstat (limited to 'stanzione/Makefile')
-rw-r--r--stanzione/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/stanzione/Makefile b/stanzione/Makefile
new file mode 100644
index 0000000..4a3f928
--- /dev/null
+++ b/stanzione/Makefile
@@ -0,0 +1,25 @@
+.POSIX:
+.SUFFIXES: .tex .pdf
+
+PDFS = mm1.pdf
+
+PDFLATEX = pdflatex
+BIBER = biber
+
+all: $(PDFS)
+
+$(PDFS): sources.bib
+
+clean:
+ rm -f *.bbl *.blg *.log *.aux *.pdf *.run.xml *.bcf *.out
+
+.tex.pdf:
+ $(PDFLATEX) $<
+ $(BIBER) $*
+ $(PDFLATEX) $<
+ $(PDFLATEX) $<
+
+mm1.pdf: yang.jpg
+
+yang.jpg:
+ curl -o yang.jpg "https://upload.wikimedia.org/wikipedia/commons/7/7f/Yang-single_%28restoration%29.jpg"