Skip to content
Snippets Groups Projects
Makefile 169 B


install:
	dune build @install

build:
	dune build 

.PHONY:test
test:
	cd test; make

clean:
	rm -f *.cmxs sasa *.cmi *.o *.cmx *.pdf
	dune clean
	cd test; make clean