From 02b31342e0dba3703c1a3a91352f7ae19764d7ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 29 Nov 2021 13:18:22 +0100 Subject: gauss quadratur zeugs --- buch/chapters/060-integral/gq/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 buch/chapters/060-integral/gq/Makefile (limited to 'buch/chapters/060-integral/gq/Makefile') diff --git a/buch/chapters/060-integral/gq/Makefile b/buch/chapters/060-integral/gq/Makefile new file mode 100644 index 0000000..2ce859c --- /dev/null +++ b/buch/chapters/060-integral/gq/Makefile @@ -0,0 +1,22 @@ +# +# Makefile -- Gauss quadrature experiments +# +# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# +all: kreis gq.pdf + +gq.o: gq.cpp + g++ `pkg-config --cflags gsl` -o gq.o -g -Wall -O2 -c gq.cpp + +gq: gq.o + g++ -g -Wall -O2 gq.o `pkg-config --libs gsl` -o gq + +kreis: kreis.cpp + g++ `pkg-config --cflags gsl` -g -Wall -O2 kreis.cpp \ + `pkg-config --libs gsl` -o kreis + +gqpaths.tex: gq + ./gq > gqpaths.tex + +gq.pdf: gq.tex gqpaths.tex + pdflatex gq.tex -- cgit v1.2.1