From ba8619470edf1d04d89a1308806b0ec781902446 Mon Sep 17 00:00:00 2001 From: Robert Ricci Date: Mon, 13 Jan 2014 12:50:25 -0700 Subject: [PATCH] 'make class' target - make all PDFs and put them in one place --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Makefile b/Makefile index f8071dc..9b14a8b 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,14 @@ SUBDIRS=syllabus schedule assignments lectures include Makerules + +# +# Build all PDFs for the class and collect them in one directory +# +.PHONY: class + +class: all + -rm -rf class/ + mkdir class/ + ./makeclass + -- GitLab