diff options
Diffstat (limited to 'buch/chapters/020-exponential/code/Makefile')
-rw-r--r-- | buch/chapters/020-exponential/code/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/buch/chapters/020-exponential/code/Makefile b/buch/chapters/020-exponential/code/Makefile new file mode 100644 index 0000000..b189dae --- /dev/null +++ b/buch/chapters/020-exponential/code/Makefile @@ -0,0 +1,9 @@ +# +# Makefile -- build and execute some interesting numerical computation +# programs +# +# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# + +xxl: xxl.c + gcc -o xxl -W -O2 -lgsl xxl.c |