# Makefile 

.PHONY: test grind clean

test:
	@./run_test *.b

grind:
	@./grind *.b

clean:
	@rm -f *.out
