mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-05 19:00:32 -05:00
20 lines
198 B
Makefile
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
|