mirror of
https://github.com/c-cube/ezcurl.git
synced 2025-12-05 19:00:34 -05:00
20 lines
223 B
Makefile
20 lines
223 B
Makefile
|
|
all: build test
|
|
|
|
build:
|
|
@dune build @install
|
|
|
|
test:
|
|
@dune runtest --no-buffer --force
|
|
|
|
clean:
|
|
@dune clean
|
|
|
|
doc:
|
|
@dune build @doc
|
|
|
|
WATCH?= @install @runtest
|
|
watch:
|
|
@dune build $(WATCH )-w
|
|
|
|
.PHONY: all build test watch
|