diff options
Diffstat (limited to 'buch/chapters/050-differential/uebungsaufgaben/Makefile')
-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 |