aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/110-elliptisch/images/Makefile
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2021-10-16 21:44:20 +0200
committerAndreas Müller <andreas.mueller@ost.ch>2021-10-16 21:44:20 +0200
commiteeb4c0186284aca82d85c0e45e7471a3be1b9cd7 (patch)
tree7fa4ceecc2724f886a237652c579950b149bb914 /buch/chapters/110-elliptisch/images/Makefile
parentnew files (diff)
downloadSeminarSpezielleFunktionen-eeb4c0186284aca82d85c0e45e7471a3be1b9cd7.tar.gz
SeminarSpezielleFunktionen-eeb4c0186284aca82d85c0e45e7471a3be1b9cd7.zip
wertebereich elliptischer integrale
Diffstat (limited to 'buch/chapters/110-elliptisch/images/Makefile')
-rw-r--r--buch/chapters/110-elliptisch/images/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/buch/chapters/110-elliptisch/images/Makefile b/buch/chapters/110-elliptisch/images/Makefile
index 4912cca..6e3a5ce 100644
--- a/buch/chapters/110-elliptisch/images/Makefile
+++ b/buch/chapters/110-elliptisch/images/Makefile
@@ -3,7 +3,7 @@
#
# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
#
-all: lemniskate.pdf ellipsenumfang.pdf unvollstaendig.pdf
+all: lemniskate.pdf ellipsenumfang.pdf unvollstaendig.pdf rechteck.pdf
lemniskate.pdf: lemniskate.tex
pdflatex lemniskate.tex
@@ -15,13 +15,19 @@ ekplot.tex: ellipsenumfang.m
octave ellipsenumfang.m
rechteck: rechteck.cpp
- g++ -O -Wall -g rechteck.cpp -o rechteck
+ g++ `pkg-config --cflags gsl` `pkg-config --libs gsl` -O -Wall -g -std=c++11 rechteck.cpp -o rechteck
-test: rechteck
- ./rechteck
+rechteckpfade.tex: rechteck
+ ./rechteck --outfile rechteckpfade.tex
+
+rechteck.pdf: rechteck.tex rechteckpfade.tex
+ pdflatex rechteck.tex
unvollstaendig.pdf: unvollstaendig.tex unvollpath.tex
pdflatex unvollstaendig.tex
unvollpath.tex: unvollstaendig.m
octave unvollstaendig.m
+
+
+