C++ = g++
CFLAGS = -O3 -DNDEBUG
LIBS = 

honey : honey.cc
	$(C++) $(CFLAGS) -o honey honey.cc $(LIBS)

clean :
	rm -f honey
