blob: c650491d1a4fb56a1552da324fe8f75580b560b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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/
|