aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/reedsolomon/Makefile
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2021-07-28 18:04:53 +0200
committerGitHub <noreply@github.com>2021-07-28 18:04:53 +0200
commitc106f9a72f89b9c83287770785f74ba79441b6c3 (patch)
tree50763e956858f49dfb840d16b62921d4d2c4a9c1 /buch/papers/reedsolomon/Makefile
parentMerge pull request #53 from Lukaszogg/master (diff)
parentMerge remote-tracking branch 'upstream/master' into Baer (diff)
downloadSeminarMatrizen-c106f9a72f89b9c83287770785f74ba79441b6c3.tar.gz
SeminarMatrizen-c106f9a72f89b9c83287770785f74ba79441b6c3.zip
Merge pull request #54 from JODBaer/Baer
rewrite some texts
Diffstat (limited to '')
-rw-r--r--buch/papers/reedsolomon/Makefile50
1 files changed, 48 insertions, 2 deletions
diff --git a/buch/papers/reedsolomon/Makefile b/buch/papers/reedsolomon/Makefile
index 9c96e88..25fd98b 100644
--- a/buch/papers/reedsolomon/Makefile
+++ b/buch/papers/reedsolomon/Makefile
@@ -4,6 +4,52 @@
# (c) 2020 Prof Dr Andreas Mueller
#
-images:
- @echo "no images to be created in reedsolomon"
+SOURCES := \
+ anwendungen.tex \
+ codebsp.tex \
+ decmitfehler.tex \
+ decohnefehler.tex \
+ dtf.tex \
+ einleitung.tex \
+ endlichekoerper.tex \
+ hilfstabellen.tex \
+ idee.tex \
+ main.tex \
+ packages.tex \
+ rekonstruktion.tex \
+ restetabelle1.tex \
+ restetabelle2.tex \
+ standalone.tex \
+ zusammenfassung.tex
+
+TIKZFIGURES := \
+ tikz/polynom2.tex \
+ tikz/plotfft.tex
+
+FIGURES := $(patsubst tikz/%.tex, figures/%.pdf, $(TIKZFIGURES))
+
+
+all: images standalone
+
+
+.PHONY: images
+images: $(FIGURES)
+
+figures/%.pdf: tikz/%.tex
+ mkdir -p figures
+ pdflatex --output-directory=figures $<
+
+.PHONY: standalone
+standalone: standalone.tex $(SOURCES) $(FIGURES)
+ mkdir -p standalone
+ cd ../..; \
+ pdflatex \
+ --halt-on-error \
+ --shell-escape \
+ --output-directory=papers/reedsolomon/standalone \
+ papers/reedsolomon/standalone.tex;
+ cd standalone; \
+ bibtex standalone; \
+ makeindex standalone;
+