diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-10-03 14:24:04 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2021-10-03 14:24:04 +0200 |
commit | 6747b071a643ae99576bee6a996f2792232ad8ab (patch) | |
tree | 8d2110aac7d1012748ed739ebe8c36ee56886eda /vorlesungen/slides/0/Makefile | |
parent | new slide (diff) | |
download | SeminarSpezielleFunktionen-6747b071a643ae99576bee6a996f2792232ad8ab.tar.gz SeminarSpezielleFunktionen-6747b071a643ae99576bee6a996f2792232ad8ab.zip |
ad video complete
Diffstat (limited to 'vorlesungen/slides/0/Makefile')
-rw-r--r-- | vorlesungen/slides/0/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vorlesungen/slides/0/Makefile b/vorlesungen/slides/0/Makefile new file mode 100644 index 0000000..c650491 --- /dev/null +++ b/vorlesungen/slides/0/Makefile @@ -0,0 +1,14 @@ +# +# Makefile -- build the images +# +# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# + +simulation: simulation.cpp + g++ -Wall -O2 -g -o simulation `pkg-config --cflags Magick++` \ + simulation.cpp `pkg-config --libs Magick++` +test: simulation + ./simulation + +video: simulation + ./simulation --iterations=1000 test/ |