all: event2dot

OPTIONS=

event2dot: readfile.cpp main.cpp graph.cpp dotgen.cpp config.cpp binarytree.cpp
	g++ $(OPTIONS) dotgen.cpp readfile.cpp main.cpp graph.cpp config.cpp binarytree.cpp -o event2dot

clean:
	rm *.o event2dot || true
