1
0

Initial import

This commit is contained in:
Sayamindu Dasgupta
2017-11-24 20:09:28 -08:00
commit fd870ead08
16 changed files with 368 additions and 0 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
.RECIPEPREFIX +=
TARGET = letter.pdf
SIGIMAGE = figures/signature.png.gpg
all: $(TARGET)
$(TARGET): update-sig main.pdf
mv main.pdf letter.pdf
main.pdf:
rubber -m xelatex main.tex
update-sig:
gpg --yes --output figures/signature.png --decrypt $(SIGIMAGE)
clean:
rubber -m xelatex --clean main.tex && $(RM) $(TARGET) && $(RM) figures/signature.png