diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-06-27 20:17:16 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-06-27 20:17:16 +0200 |
commit | 05d75b0f467b2535db538ecaee461cf0c8b637d1 (patch) | |
tree | 3b67ee7b21cc5545cc4917d408eab1093779937d /buch/chapters/110-elliptisch/agm/Makefile | |
parent | final agm (diff) | |
download | SeminarSpezielleFunktionen-05d75b0f467b2535db538ecaee461cf0c8b637d1.tar.gz SeminarSpezielleFunktionen-05d75b0f467b2535db538ecaee461cf0c8b637d1.zip |
add stuff for elliptic filters
Diffstat (limited to 'buch/chapters/110-elliptisch/agm/Makefile')
-rw-r--r-- | buch/chapters/110-elliptisch/agm/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/buch/chapters/110-elliptisch/agm/Makefile b/buch/chapters/110-elliptisch/agm/Makefile index e7975e1..8dab511 100644 --- a/buch/chapters/110-elliptisch/agm/Makefile +++ b/buch/chapters/110-elliptisch/agm/Makefile @@ -3,6 +3,11 @@ # # (c) 2022 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule # +all: sn + +sn: sn.cpp + g++ -O -Wall -g -std=c++11 sn.cpp -o sn `pkg-config --cflags gsl` `pkg-config --libs gsl` + agm: agm.cpp g++ -O -Wall -g -std=c++11 agm.cpp -o agm `pkg-config --cflags gsl` `pkg-config --libs gsl` |