mirror of
https://github.com/c-cube/ezcurl.git
synced 2025-12-06 03:05:31 -05:00
19 lines
189 B
Makefile
19 lines
189 B
Makefile
|
|
all: build test
|
|
|
|
build:
|
|
@dune build @all
|
|
|
|
test:
|
|
@dune runtest --no-buffer --force
|
|
|
|
clean:
|
|
@dune clean
|
|
|
|
doc:
|
|
@dune build @doc
|
|
|
|
watch:
|
|
@dune build @all -w
|
|
|
|
.PHONY: all build test watch
|