
all:
	@mkdir -p lib
	make -C src all
	
clean:
	@rm -rf lib
	make -C src clean

deep-clean: clean
	make -C src deep-clean
