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 ea538fb commit b1fc090Copy full SHA for b1fc090
benchmarks/Makefile
@@ -17,6 +17,7 @@ bench:
17
@date -u +"%FT%TZ - Installing dependencies"
18
opam pin -yn --with-version=dev ..
19
opam install -y wasm_of_ocaml-compiler js_of_ocaml-ppx gen_js_api brr
20
+ $(MAKE) -C benchmark-others bench
21
$(MAKE) microbenchmarks
22
$(MAKE) -C benchmark-fiat-crypto bench
23
$(MAKE) -C benchmark-ocamlc bench
benchmarks/benchmark-others/Makefile
@@ -0,0 +1,8 @@
1
+SUBDIRS := $(wildcard */.)
2
+
3
+bench: $(SUBDIRS)
4
5
+$(SUBDIRS):
6
+ $(MAKE) -C $@
7
8
+.PHONY: all $(SUBDIRS)
benchmarks/benchmark-others/dune
@@ -0,0 +1,3 @@
+; Ignore subdirectories
+(dirs)
0 commit comments