You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.6 KiB
69 lines
1.6 KiB
# Copyright (c) 2018-present, Facebook, Inc.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
.PHONY: default
|
|
default: exes
|
|
|
|
DUNEINS=$(shell find src -name dune.in)
|
|
DUNES=$(patsubst %.in,%,$(DUNEINS))
|
|
|
|
.PHONY: dunes
|
|
dunes: $(DUNES)
|
|
|
|
%/dune: dune-common.in %/dune.in
|
|
@cat $+ > $@
|
|
|
|
.PHONY: setup
|
|
setup: dunes
|
|
|
|
.PHONY: check
|
|
check: setup
|
|
dune build @check
|
|
|
|
.PHONY: exes
|
|
exes: setup
|
|
dune build _build/dev/src/sledge.exe _build/release/src/sledge.exe _build/dev/sledge.install _build/release/sledge.install
|
|
|
|
.PHONY: dbg
|
|
dbg: setup
|
|
dune build _build/dev/src/sledge.exe _build/dev/sledge.install
|
|
|
|
.PHONY: opt
|
|
opt: setup
|
|
dune build _build/release/src/sledge.exe _build/release/sledge.install
|
|
|
|
.PHONY: watch
|
|
watch: setup
|
|
dune build --watch _build/dev/src/sledge.exe _build/release/src/sledge.exe
|
|
|
|
.PHONY: test
|
|
test: setup
|
|
dune build @_build/dev/runtest --auto-promote
|
|
|
|
BISECT_DIR=$(CURDIR)/_coverage/out
|
|
|
|
.PHONY: coverage
|
|
coverage: setup
|
|
@rm -rf _coverage
|
|
@mkdir -p $(BISECT_DIR)
|
|
@BISECT_FILE=$(BISECT_DIR)/bisect dune build --force @_build/coverage/runtest
|
|
@find $(BISECT_DIR) -type f | xargs bisect-ppx-report -I _build/coverage/ -text _coverage/summary.txt -html _coverage/
|
|
@echo "open _coverage/index.html"
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
dune clean
|
|
rm -rf _coverage $(DUNES)
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
dune build @_build/dev/src/fmt --auto-promote
|
|
ocamlformat -i src/version.ml.in $(DUNEINS)
|
|
clang-format -i model/llair_intrinsics.h model/cxxabi.cpp
|
|
|
|
# print any variable for Makefile debugging
|
|
print-%:
|
|
@printf '$*='; printf '$($*)'; printf '\n'
|