Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions research/misconceptions/Makefile
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
LATEXFLAGS= -shell-escape
TEX_PYTHONTEX= yes

.PHONY: all
all: article.pdf

article.pdf: article.tex
latexmk -shell-escape -pdf $<

article.pdf: bibliography.bib
article.pdf: preamble.tex

article.pdf: introduction.tex
article.pdf: background.tex
article.pdf: method.tex
#article.pdf: results-overview.tex

article.pdf: classes.tex
article.pdf: conditionals.tex
article.pdf: functions-variables.tex
article.pdf: problem-solving.tex
article.pdf: repetitions.tex
article.pdf: tools.tex
article.pdf: types.tex
article.pdf: background.tex
article.pdf: introduction.tex
article.pdf: method.tex

.PHONY: clean
clean:
latexmk -C
${RM} article.bbl article.run.xml

INCLUDE_MAKEFILES?=../../makefiles
include ${INCLUDE_MAKEFILES}/tex.mk
Loading