From: Roland Mas <roland.mas@entierement.net>
Date: Wed, 26 Apr 2023 11:28:04 +0200
Subject: Add Makefile to build paper from sources

---
 paper/Makefile | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 paper/Makefile

diff --git a/paper/Makefile b/paper/Makefile
new file mode 100644
index 0000000..25e89d2
--- /dev/null
+++ b/paper/Makefile
@@ -0,0 +1,13 @@
+#! /usr/bin/make -f
+
+TARGET=nelson-prescott-2019.pdf
+
+$(TARGET): manuscript.tex main.bib
+	pdflatex $<
+	bibtex $(basename $<).aux
+	pdflatex $<
+	pdflatex $<
+	mv manuscript.pdf $@
+
+clean:
+	rm -f manuscript.b* manuscript.aux manuscript.log $(TARGET)
