all: src doc testing

src:
	$(MAKE) -C src

doc:
	doxygen > Doxylogs

testing:
	$(MAKE) -C test/

.PHONY: clean src doc
clean:
	$(MAKE) -C src clean
	$(MAKE) -C doc clean
	$(MAKE) -C test clean
	#Clean the work that bin has done
	#Work only if the bin is at the root of the projet
	rm -rf graphs/
	#Clean the logs of doxygen
	rm -f Doxylogs
