tiny_httpd/Makefile
2021-12-11 13:20:18 -05: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