aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/050-differential/uebungsaufgaben/Makefile
blob: b62f60cb31d388198eced4d826bb0cef0bd0f299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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