summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSiddharth Ravikumar <sravik@bgsu.edu>2016-03-26 21:09:52 +0000
committerSiddharth Ravikumar <sravik@bgsu.edu>2016-03-26 21:09:52 +0000
commit0b56cb11bf72120248229cac1785ac29333d2baf (patch)
treea472c7f1bc690d541776bfec79dc8df2929c7bba /Makefile
parent9c6340cef62cf8e517b46d0d6cee99ad63702e9f (diff)
Add combox presentation. "Introduction" drafted.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6018def..0352855 100644
--- a/Makefile
+++ b/Makefile
@@ -69,6 +69,9 @@ $(100MB): $(BLOB_DIR)
report:
@$(MAKE) -C report
+presentation:
+ @$(MAKE) -C presentation
+
report-clean:
@find report/ -name '*.aux' -exec rm -f {} +
@find report/ -name '*.dvi' -exec rm -f {} +
@@ -79,8 +82,17 @@ report-clean:
@find report/ -name '*.bbl' -exec rm -f {} +
@find report/ -name '*.blg' -exec rm -f {} +
+presentation-clean:
+ @find presentation/ -name '*.aux' -exec rm -f {} +
+ @find presentation/ -name '*.dvi' -exec rm -f {} +
+ @find presentation/ -name '*.log' -exec rm -f {} +
+ @find presentation/ -name '*.toc' -exec rm -f {} +
+ @find presentation/ -name '*.nav' -exec rm -f {} +
+ @find presentation/ -name '*.out' -exec rm -f {} +
+ @find presentation/ -name '*.snm' -exec rm -f {} +
+
blobs-clean:
@rm -f $(ALL_BLOBS)
@rmdir $(BLOB_DIR)
-.PHONY: blobs blobs-clean report report-clean
+.PHONY: blobs blobs-clean report report-clean presentation presentation-clean