ezcurl/Makefile
Simon Cruanes 9e0b84ecfd
makefile
2023-06-09 23:13:18 -04:00

20 lines
223 B
Makefile

all: build test
build:
@dune build @install
test:
@dune runtest --no-buffer --force
clean:
@dune clean
doc:
@dune build @doc
WATCH?= @install @runtest
watch:
@dune build $(WATCH )-w
.PHONY: all build test watch