add submission target to makefile

This commit is contained in:
Carl Pearson
2017-05-18 08:50:29 -07:00
parent 691ce0e527
commit 64d9383365
6 changed files with 4 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ PROJ = main
TEXFILE = main.tex
PYTHON = python
all: pdf
all: pdf submission
# pdf: $(TEXFILE)
# $(TEX) -shell-escape $<
@@ -19,16 +19,12 @@ pdf: $(TEXFILE) figures/kernels.pdf figures/mlfmm.pdf figures/cpu_matvec.pdf
$(TEX) -shell-escape $<
$(TEX) -shell-escape $<
watch:
$(info ************ WATCHING FOR CHANGES ************)
watchman watch $(shell pwd)
watchman -- trigger $(shell pwd) pyfiles 'figures/*.py' -- ls -l
unwatch:
$(info ************ CANCELLING WATCH ************)
watchman watch-del "$(shell pwd)"
submission: pdf
zip -r cem17.zip main.pdf figures/kernels.pdf figures/mlfmm.pdf figures/cpu_matvec.pdf
clean:
rm -f \
cem17.zip \
$(TEXFILE:.tex=.pdf) \
$(TEXFILE:.tex=.aux) \
$(TEXFILE:.tex=.log) \

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.