aboutsummaryrefslogtreecommitdiff
path: root/doc/Makefile
blob: a631921de474636de3bcf46337cee8f44e427ca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.SUFFIXES: .puml .png

docName = tfg
outputFolder = out

texFiles = tex/tfg.tex tex/introduction.tex tex/planification.tex tex/interface.tex tex/implementation.tex tex/systemAnalysis.tex tex/biber.bib
diagramImgs = diagrams/gameRepresentation.png diagrams/gtpEngine.png diagrams/modules.png diagrams/planificationWorkPlanEngine.png diagrams/planificationWorkPlanGame.png diagrams/sgfModule.png diagrams/useCases.png diagrams/analysisClasses.png

all: $(docName).pdf

$(docName).pdf: $(texFiles) $(diagramImgs)
	[ -d $(outputFolder) ] || mkdir $(outputFolder)
	xelatex -output-directory $(outputFolder) tex/$(docName).tex
	biber $(outputFolder)/$(docName)
	xelatex -output-directory $(outputFolder) tex/$(docName).tex
	mv $(outputFolder)/$(docName).pdf .

.puml.png:
	plantuml $<

clean:
	rm -r $(outputFolder)
	rm diagrams/*.png