.PHONY: clean tests
OCAMLPACKS[] +=
	checks
OCAML_LIBS[] +=
	../src/foo
OCAMLINCLUDES[] +=
	../src

OCamlProgram(t, t)

tests: t$(EXE)
	./t

.DEFAULT: tests

clean:
	rm -f \
	$(filter-proper-targets $(glob $(addsuffix .*, t))) \
	t.run t.opt t

