diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-12-08 20:15:41 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2021-12-08 20:15:41 +0100 |
commit | 531c564ecc1d73e1ddf25890720212d89f18edc1 (patch) | |
tree | 814df17dd23b969d56f3ae93920166613c3b2b79 /buch/chapters/050-differential/uebungsaufgaben/Makefile | |
parent | add new section on hypergeometric differential equation (diff) | |
download | SeminarSpezielleFunktionen-531c564ecc1d73e1ddf25890720212d89f18edc1.tar.gz SeminarSpezielleFunktionen-531c564ecc1d73e1ddf25890720212d89f18edc1.zip |
add new stuff about airy and hypergeometric functions
Diffstat (limited to '')
-rw-r--r-- | buch/chapters/050-differential/uebungsaufgaben/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/buch/chapters/050-differential/uebungsaufgaben/Makefile b/buch/chapters/050-differential/uebungsaufgaben/Makefile new file mode 100644 index 0000000..b62f60c --- /dev/null +++ b/buch/chapters/050-differential/uebungsaufgaben/Makefile @@ -0,0 +1,15 @@ +# +# Makefile +# +# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# +all: airy.pdf + +airy: airy.cpp + g++ -o airy -Wall -g -O2 `pkg-config --cflags gsl` airy.cpp `pkg-config --libs gsl` + +airypaths.tex: airy + ./airy --debug + +airy.pdf: airy.tex airypaths.tex + pdflatex airy.tex |