all:
	g++ -Ofast -I. app.cc -o app -lSDL2
	./app
video:
	./app | ffmpeg -r 60 -i - -vf "format=gray" -y output.gif 2>/dev/null
