mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 18:21:15 +00:00
19 lines
415 B
Makefile
19 lines
415 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 = -pdf
|
|
LATEXMK_CLEAN_FLAGS = -c
|
|
|
|
.DEFAULT_GOAL := all
|
|
|
|
all: latexmk_output clean
|
|
|
|
latexmk_output:
|
|
perl latexmk.pl $(LATEXMK_COMPILE_FLAGS)
|
|
|
|
clean:
|
|
perl latexmk.pl $(LATEXMK_CLEAN_FLAGS)
|