From 89862ae6a0554870a7708ae73112f86d2d21fc8d Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Thu, 10 Feb 2022 01:12:45 -0500
Subject: new teachers, new work
---
stanzione/Makefile | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
create mode 100644 stanzione/Makefile
(limited to 'stanzione/Makefile')
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"
--
cgit