Select the types of activity you want to include in your feed.
1 2all: build test 3 4build: 5 @dune build @install 6 7test: 8 @dune runtest --no-buffer --force 9 10example: 11 @dune exec examples/show_off.exe 12 13clean: 14 @dune clean 15 16doc: 17 @dune build @doc 18 19.PHONY: all build test example clean doc