diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-04-18 02:07:15 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-04-18 02:07:15 -0400 |
commit | 24bd47b996d5565dbbc0192dd1fb6f1e6f11ed73 (patch) | |
tree | 5161b3254f24225183c9d216ce777278da2b4d04 /Makefile | |
parent | cf028dc2e30dfa467a86263ed73c7bc4a55daff1 (diff) |
cleaned up with the help of a makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ed7cca7 --- /dev/null +++ b/Makefile @@ -0,0 +1,64 @@ +.POSIX: +.SUFFIXES: .tex .pdf +all: examples/mla8.pdf examples/notes.pdf examples/terms.pdf gathing-eng/module-career.pdf model-un/research-guide.pdf tech-math/comb/hw1.pdf tech-math/comb/hw3.pdf tech-math/comb/hw4.pdf tech-math/comb/hw5.pdf tech-math/comb/hw6.pdf tech-math/comb/ws1.pdf tech-math/comb/ws2.pdf tech-math/comb/ws3.pdf tech-math/comb/ws4.pdf tech-math/comb/ws5.pdf tech-math/comb/ws6.pdf tech-math/de/hw1.pdf tech-math/de/hw2.pdf tech-math/de/hw4.pdf tech-math/lect-notes.pdf tech-math/reflection.pdf wroblewski-world/dbq.pdf wroblewski-world/history-six-glasses.pdf wroblewski-world/outlines/unit1.pdf wroblewski-world/outlines/unit4.pdf wroblewski-world/outlines/unit3.pdf wroblewski-world/outlines/unit2.pdf wroblewski-world/reading-notes/compile.pdf wroblewski-world/religion-comp.pdf jones-la/heathcliff-essay.pdf jones-la/zinsser/annotations.pdf jones-la/zinsser/essay.rough.pdf jones-la/zinsser/essay.pdf jones-la/vance/annotations.pdf jones-la/vance/essay.rough.pdf jones-la/vance/essay.edit.pdf jones-la/vance/essay.pdf jones-la/quick1.pdf jones-la/letter.pdf jones-la/wiesenthal.pdf jones-la/persuas.pdf jones-la/shoot.pdf jones-la/quick6.pdf jones-la/paret.pdf jones-la/gatsby-proj.pdf jones-la/rhetorical3.pdf jones-la/reflection.pdf jones-la/rules.pdf jones-la/quick5.pdf +.tex.pdf: + pdftex --jobname $* $< + rm $*.log +examples/mla8.pdf: examples/mla8.tex mla8.tex +examples/notes.pdf: examples/notes.tex notes.tex +examples/terms.pdf: examples/terms.tex notes.tex terms.tex +gathing-eng/module-career.pdf: gathing-eng/module-career.tex +model-un/research-guide.pdf: model-un/research-guide.tex\ +model-un/nigeria-flag.png +model-un/nigeria-flag.png: model-un/nigeria-flag.svg + magick $< $@ + +tech-math/comb/hw1.pdf: tech-math/comb/hw1.tex ws-form.tex +tech-math/comb/hw3.pdf: tech-math/comb/hw3.tex ws-form.tex +tech-math/comb/hw4.pdf: tech-math/comb/hw4.tex +tech-math/comb/hw5.pdf: tech-math/comb/hw5.tex +tech-math/comb/hw6.pdf: tech-math/comb/hw6.tex +tech-math/comb/ws1.pdf: tech-math/comb/ws1.tex ws-form.tex +tech-math/comb/ws2.pdf: tech-math/comb/ws2.tex ws-form.tex +tech-math/comb/ws3.pdf: tech-math/comb/ws3.tex ws-form.tex +tech-math/comb/ws4.pdf: tech-math/comb/ws4.tex ws-form.tex +tech-math/comb/ws5.pdf: tech-math/comb/ws5.tex +tech-math/comb/ws6.pdf: tech-math/comb/ws6.tex + +tech-math/de/hw1.pdf: tech-math/de/hw1.tex +tech-math/de/hw2.pdf: tech-math/de/hw2.tex +tech-math/de/hw4.pdf: tech-math/de/hw4.tex +tech-math/lect-notes.pdf: tech-math/lect-notes.tex notes.tex +tech-math/reflection.pdf: tech-math/reflection.tex + +wroblewski-world/dbq.pdf: wroblewski-world/dbq.tex +wroblewski-world/history-six-glasses.pdf: wroblewski-world/history-six-glasses.tex +wroblewski-world/outlines/unit1.pdf: wroblewski-world/outlines/unit1.tex +wroblewski-world/outlines/unit4.pdf: wroblewski-world/outlines/unit4.tex +wroblewski-world/outlines/unit3.pdf: wroblewski-world/outlines/unit3.tex +wroblewski-world/outlines/unit2.pdf: wroblewski-world/outlines/unit2.tex +wroblewski-world/reading-notes/compile.pdf: wroblewski-world/reading-notes/compile.tex +wroblewski-world/religion-comp.pdf: wroblewski-world/religion-comp.tex + +jones-la/heathcliff-essay.pdf: jones-la/heathcliff-essay.tex +jones-la/zinsser/annotations.pdf: jones-la/zinsser/annotations.tex +jones-la/zinsser/essay.rough.pdf: jones-la/zinsser/essay.rough.tex +jones-la/zinsser/essay.pdf: jones-la/zinsser/essay.tex +jones-la/vance/annotations.pdf: jones-la/vance/annotations.tex +jones-la/vance/essay.rough.pdf: jones-la/vance/essay.rough.tex +jones-la/vance/essay.edit.pdf: jones-la/vance/essay.edit.tex +jones-la/vance/essay.pdf: jones-la/vance/essay.tex +jones-la/quick1.pdf: jones-la/quick1.tex +jones-la/letter.pdf: jones-la/letter.tex +jones-la/wiesenthal.pdf: jones-la/wiesenthal.tex +jones-la/persuas.pdf: jones-la/persuas.tex +jones-la/shoot.pdf: jones-la/shoot.tex +jones-la/quick6.pdf: jones-la/quick6.tex +jones-la/paret.pdf: jones-la/paret.tex +jones-la/gatsby-proj.pdf: jones-la/gatsby-proj.tex +jones-la/rhetorical3.pdf: jones-la/rhetorical3.tex +jones-la/reflection.pdf: jones-la/reflection.tex +jones-la/rules.pdf: jones-la/rules.tex +jones-la/quick5.pdf: jones-la/quick5.tex + + |