Skip to content
Snippets Groups Projects
Commit 0b023ee9 authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Added Makefile for docs compilation.

parent e2d49e51
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
BUILD=build/
d := docs/
include base.mk
include $(d)rules.mk
all: doc
clean:
rm -rf $(BUILD)
distclean:
rm -rf $(BUILD) `find . -name \*.pyc`
b := $(BUILD)$(d)
CLEAN := $(CLEAN) $(b)
.PHONY: docs
doc: $(b)proposal.pdf
$(b)%.pdf: $(d)%.tex
mkdir -p `dirname $@`
pdflatex -halt-on-error -interaction=nonstopmode -output-directory `dirname $@` $^
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment