default: release

debug:
	g++ -o sbbi -g -Wall -W -Wwrite-strings -Wundef anderssontree.cpp sbbi.cpp

release:
	g++ -O2 -DNDEBUG -Wall -W -Wwrite-strings -Wundef -o sbbi anderssontree.cpp sbbi.cpp
