diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-03-27 05:25:45 +0000 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-03-27 05:25:45 +0000 |
commit | 87fb0b2fada08bfd41a5d8ad0658613bffed6053 (patch) | |
tree | 9fb565abcfac99c613f138bd00dbc9df6ebd9074 /presentation/Makefile | |
parent | c136a9d8b5566b72f8fe1edbca8e92935ac53b13 (diff) |
Move things around.
- Each section is moved to its own file under sections/
Diffstat (limited to 'presentation/Makefile')
-rw-r--r-- | presentation/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/presentation/Makefile b/presentation/Makefile index c2444b2..42915a2 100644 --- a/presentation/Makefile +++ b/presentation/Makefile @@ -10,7 +10,8 @@ # <https://creativecommons.org/publicdomain/zero/1.0/> PDF = combox-p.pdf -TEX = p.tex +P_TEX = p.tex +P_INCLUDES = sections/*.tex DVI = p.dvi all: $(PDF) @@ -19,7 +20,7 @@ all: $(PDF) $(PDF): $(DVI) dvipdf $< $@ -$(DVI): $(TEX) +$(DVI): $(P_TEX) $(P_INCLUDES) @latex $< @latex $< @latex $< |