diff options
author | Nao Pross <np@0hm.ch> | 2022-05-19 18:58:44 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2022-05-19 18:58:44 +0200 |
commit | cfd03547b8f392701471bd25aa98926494c923c0 (patch) | |
tree | 087145951b3fb505116f63ad90670eb215c87dac /presentation/Makefile | |
parent | derivation of the orthogonal basis functions using the laplacian operator (diff) | |
download | FourierOnS2-cfd03547b8f392701471bd25aa98926494c923c0.tar.gz FourierOnS2-cfd03547b8f392701471bd25aa98926494c923c0.zip |
Add BSc presentation
Diffstat (limited to 'presentation/Makefile')
-rw-r--r-- | presentation/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/presentation/Makefile b/presentation/Makefile new file mode 100644 index 0000000..8427cb0 --- /dev/null +++ b/presentation/Makefile @@ -0,0 +1,19 @@ +TEX := xelatex +TEXARGS := --output-directory=build --halt-on-error + +DOCNAME := FourierOnS2 +SOURCES := $(DOCNAME).tex + +include tex/Makefile.inc + +.PHONY: clean +all: build/$(DOCNAME).pdf + +clean: + @rm -rfv build + +build/$(DOCNAME).pdf : $(SOURCES) + mkdir -p build + $(TEX) $(TEXARGS) $< + $(TEX) $(TEXARGS) $< + |