Final paper for OS II

This commit is contained in:
2018-06-12 21:52:03 -07:00
parent 06c37d59e1
commit 5cbceb42d7
12 changed files with 15377 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Makefile created by Corwin Perren
# Generic makefile for all LaTeX projects downloaded from overleaf
#
# All this makefile does is call perl against latexmkrc, which is
# the latex equivalent of make
LATEXMK_COMPILE_FLAGS = -pdf
LATEXMK_CLEAN_FLAGS = -c
.DEFAULT_GOAL := all
all: latexmk_output clean
latexmk_output:
perl latexmk.pl $(LATEXMK_COMPILE_FLAGS)
mv output.pdf CS444_final_paper_perrenc.pdf
clean:
perl latexmk.pl $(LATEXMK_CLEAN_FLAGS)