We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 471e284 commit 42f048fCopy full SHA for 42f048f
Makefile
@@ -0,0 +1,26 @@
1
+SHELL = /bin/bash
2
+
3
+config:
4
+ ./scripts/ninja.js config
5
6
+build: config
7
+ dune build
8
+ ./scripts/ninja.js build
9
10
+watch: config
11
+ dune build -w
12
13
+dce: build
14
+ opam exec reanalyze.exe -- -dce-cmt _build
15
16
+test: build
17
+ npm test
18
19
+clean:
20
+ dune clean
21
+ ./scripts/ninja.js clean
22
23
24
+.DEFAULT_GOAL := build
25
26
+.PHONY: config build test
0 commit comments