diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-06-25 22:46:16 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-06-25 22:46:16 +0200 |
commit | 335c3a23f09759be380291ec89b0f2c43c2d3db6 (patch) | |
tree | 45ae6ea45c9e911479dfdd791498ce2c6fb61663 /buch/chapters/110-elliptisch/agm/Makefile | |
parent | arithmetic-geometric-mean (diff) | |
download | SeminarSpezielleFunktionen-335c3a23f09759be380291ec89b0f2c43c2d3db6.tar.gz SeminarSpezielleFunktionen-335c3a23f09759be380291ec89b0f2c43c2d3db6.zip |
fix agm
Diffstat (limited to '')
-rw-r--r-- | buch/chapters/110-elliptisch/agm/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/buch/chapters/110-elliptisch/agm/Makefile b/buch/chapters/110-elliptisch/agm/Makefile new file mode 100644 index 0000000..e7975e1 --- /dev/null +++ b/buch/chapters/110-elliptisch/agm/Makefile @@ -0,0 +1,10 @@ +# +# Makefile +# +# (c) 2022 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# + +agm: agm.cpp + g++ -O -Wall -g -std=c++11 agm.cpp -o agm `pkg-config --cflags gsl` `pkg-config --libs gsl` + ./agm + |