diff options
Diffstat (limited to 'a6/Makefile')
-rw-r--r-- | a6/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/a6/Makefile b/a6/Makefile new file mode 100644 index 0000000..61ea860 --- /dev/null +++ b/a6/Makefile @@ -0,0 +1,15 @@ +all: noalloc pdf + +noalloc: noalloc.cc Makefile + g++ -g -O0 -Wall -Werror -Wextra -Wconversion -std=c++20 $< -o $@ + +pdf: au_BentBisballeNyeng_A6.pdf +au_BentBisballeNyeng_A6.bbl: au_BentBisballeNyeng_A6.bcf + biber $< + +au_BentBisballeNyeng_A6.bcf: au_BentBisballeNyeng_A6.tex + xelatex -halt-on-error $< + +au_BentBisballeNyeng_A6.pdf: au_BentBisballeNyeng_A6.tex au_BentBisballeNyeng_A6.bbl + xelatex -halt-on-error $< + xelatex -halt-on-error $< |