diff options
author | JODBaer <55744603+JODBaer@users.noreply.github.com> | 2022-04-27 13:18:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 13:18:49 +0200 |
commit | d3227393fd60a130348e12524bcd8664e404c1ee (patch) | |
tree | c99317532d7add78e484a1a9958ef8c698132fc9 /buch/chapters/110-elliptisch/images/Makefile | |
parent | Merge branch 'AndreasFMueller:master' into master (diff) | |
parent | fix typos (diff) | |
download | SeminarSpezielleFunktionen-d3227393fd60a130348e12524bcd8664e404c1ee.tar.gz SeminarSpezielleFunktionen-d3227393fd60a130348e12524bcd8664e404c1ee.zip |
Merge branch 'AndreasFMueller:master' into master
Diffstat (limited to '')
-rw-r--r-- | buch/chapters/110-elliptisch/images/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/buch/chapters/110-elliptisch/images/Makefile b/buch/chapters/110-elliptisch/images/Makefile index 68322b6..a7c9e74 100644 --- a/buch/chapters/110-elliptisch/images/Makefile +++ b/buch/chapters/110-elliptisch/images/Makefile @@ -5,7 +5,7 @@ # all: lemniskate.pdf ellipsenumfang.pdf unvollstaendig.pdf rechteck.pdf \ ellipse.pdf pendel.pdf jacobiplots.pdf jacobidef.pdf jacobi12.pdf \ - sncnlimit.pdf + sncnlimit.pdf slcl.pdf lemniskate.pdf: lemniskate.tex pdflatex lemniskate.tex @@ -71,3 +71,10 @@ jacobi12.pdf: jacobi12.tex sncnlimit.pdf: sncnlimit.tex pdflatex sncnlimit.tex +slcl: slcl.cpp + g++ -O -Wall -std=c++11 slcl.cpp -o slcl `pkg-config --cflags gsl` `pkg-config --libs gsl` + +slcldata.tex: slcl + ./slcl --outfile=slcldata.tex --a=0 --b=13.4 --steps=200 +slcl.pdf: slcl.tex slcldata.tex + pdflatex slcl.tex |