##
## Makefile for Beaver
## 
##

all:
	make -C src/

.PHONY: clean
clean:
	make -C src/ clean

install:
	make -C src/ install
