File: Makefile

package info (click to toggle)
ocaml-cohttp 6.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,624 kB
  • sloc: ml: 13,107; makefile: 20; sh: 18; javascript: 18
file content (25 lines) | stat: -rw-r--r-- 325 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.PHONY: build clean test clean eio eio-shell eio-test fmt js-test

build:
	dune build

test:
	dune runtest

js-test:
	dune build @runjstest

clean:
	dune clean

fmt:
	dune b @fmt --auto-promote

eio: #build eio
	dune build cohttp-eio

eio-test:
	dune runtest cohttp-eio

eio-shell: # nix-shell for eio dev
	nix develop .#eio