DOT=$(wildcard *.dot)

all: tests

%: %.cc ABR.cc ArbreBinaire.cc
	g++ -Wpedantic $^ -o $@

clean:
	rm -f $(DOT) $(DOT:.dot=.pdf)
