mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-06 03:05:29 -05:00
23 lines
264 B
Makefile
23 lines
264 B
Makefile
|
|
|
|
all: build test
|
|
|
|
build:
|
|
@dune build @install
|
|
|
|
test: tests/foo_50
|
|
@dune runtest --no-buffer --force
|
|
|
|
tests/foo_50:
|
|
dd if=/dev/zero of=$@ bs=1M count=50
|
|
|
|
clean:
|
|
@dune clean
|
|
|
|
doc:
|
|
@dune build @doc
|
|
|
|
watch:
|
|
@dune build @all -w
|
|
|
|
.PHONY: benchs tests build watch
|