ezcurl/Makefile
2019-09-13 18:22:56 -05:00

19 lines
187 B
Makefile

all: build test
build:
@dune build @install
test:
@dune runtest --no-buffer --force
clean:
@dune clean
doc:
@dune build @doc
watch:
@dune build @install -w
.PHONY: test watch