.PHONY: default build clean

default: build 
build:
	make -C ./tools build
clean:
	make -C ./tools clean
