# This Makefile is provided for convenience.  This project is compiled using
# Dune, but course at Swarthmore typically provide projects which support
# "make".

.PHONY: build
build:
	dune build
	@[ -f _build/default/src/main.exe ] && ( rm -f ./main; ln -s _build/default/src/main.exe ./main )

.PHONY: clean
clean:
	dune clean
	rm -rf _build
	@rm -f ./main
