tiny_httpd/Makefile
2019-11-13 23:38:38 -06:00

20 lines
198 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 @all -w
.PHONY: benchs tests build watch