
.PHONY: default clean all

default: 
	$(MAKE) -C src/
clean:
	$(MAKE) -C src/ clean
	$(RM) -f cache_walk
all:
	$(MAKE) -C src/ all

