executable = coffee_crisis

macos:
	mkdir -p bin
	g++ source/*.cpp -std=c++11 -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o bin/$(executable)_macos
	strip -s -R .comment -R .gnu.version bin/$(executable)_macos --strip-unneeded
linux:
	mkdir -p bin
	g++ source/*.cpp -std=c++11 -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o bin/$(executable)_linux
	strip -s -R .comment -R .gnu.version bin/$(executable)_linux --strip-unneeded