Files
2018-06-08 00:50:59 -07:00

20 lines
472 B
Makefile

# 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 = -cd -pdf homework1.tex
LATEXMK_CLEAN_FLAGS = -c
.DEFAULT_GOAL := all
all: latexmk_output clean
latexmk_output:
perl latexmk.pl $(LATEXMK_COMPILE_FLAGS)
mv homework1.pdf CS444_project1_4.pdf
clean:
perl latexmk.pl $(LATEXMK_CLEAN_FLAGS)