Started writing finally

This commit is contained in:
Connor
2021-12-16 21:33:05 -07:00
parent 0342c51914
commit 5d3c7e7928
3 changed files with 164 additions and 31 deletions

View File

@@ -18,12 +18,18 @@ $(NOTES_PDFS): $(NOTES)
-f markdown $< \
-o $@
$(THESIS_PDF): $(THESIS)
thesis_pdf/:
mkdir $@
$(THESIS_PDF): $(THESIS) thesis_pdf/
xelatex $<
rm thesis.aux thesis.log thesis.toc
xelatex $<
mv thesis.* thesis_pdf/
cp thesis_pdf/thesis.pdf .
.PHONY: clean
clean:
rm -rf $(THESIS_PDF)
rm -rf $(NOTES_PDFS)
rm -rf thesis_pdf