
all:
	g++ -Wall -o sdl_exp -std=c++14 main.cpp  -lpthread `sdl2-config --cflags --libs`


distclean:
	rm -f sdl_exp
	rm -f *~

clean:
	rm -f sdl_exp
	rm -f *~
