Add makefile to build project
This commit is contained in:
parent
01c012e74b
commit
39cfde0c84
24
Makefile
Normal file
24
Makefile
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
out.pdf: blog-daniel.pdf techreview-daniel.pdf design-doc.pdf requirements.pdf intro.pdf
|
||||||
|
|
||||||
|
intro.pdf: intro.tex
|
||||||
|
pdflatex intro.tex
|
||||||
|
|
||||||
|
blog-daniel.pdf: external/blog-daniel/blog.tex
|
||||||
|
cd external/blog-daniel && pdflatex -output-directory=../.. blog.tex && pdflatex -output-directory=../.. blog.tex
|
||||||
|
mv blog.pdf blog-daniel.pdf
|
||||||
|
|
||||||
|
techreview-daniel.pdf: external/techreview-daniel/techreview.latex
|
||||||
|
cd external/techreview-daniel && pdflatex -output-directory=../.. techreview.latex && pdflatex -output-directory=../.. techreview.latex
|
||||||
|
mv techreview.pdf techreview-daniel.pdf
|
||||||
|
|
||||||
|
design-doc.pdf: external/design/dd.tex
|
||||||
|
cd external/design && pdflatex -output-directory=../.. dd.tex && pdflatex -output-directory=../.. dd.tex
|
||||||
|
mv dd.pdf design-doc.pdf
|
||||||
|
|
||||||
|
requirements.pdf: external/requirements/requirements.latex
|
||||||
|
cd external/requirements && pdflatex -output-directory=../.. requirements.latex && pdflatex -output-directory=../.. requirements.latex
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm rf *.pdf
|
||||||
|
|
||||||
|
.PHONY: clean
|
Loading…
Reference in New Issue
Block a user