.PHONY: all
all:
	dune build CFG.exe

.PHONY: clean
clean:
	rm -f *~
	dune clean

.PHONY: test
test:
	@ echo "No test here."
