# Top level makefile, the real shit is at src/Makefile
#

default: all

.DEFAULT:
	cd src && "$(MAKE)" $@
	cd utils && "$(MAKE)" $@

doc:
	cd doc && "$(MAKE)"

.PHONY: doc
