CPP = g++

all : B2Bgenerator

clean : 
	rm -f *.o B2Bgenerator
	
B2Bgenerator : B2Bgenerator.cpp
	$(CPP) -o $@ $^
