ezcurl/Makefile
2019-09-13 21:32:11 -05:00

19 lines
189 B
Makefile

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