diff options
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/ |