# Copyright (c) Facebook, Inc. and its affiliates. # # 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 RELEASE_TARGETS = _build/release/cli/sledge_cli.exe _build/release/sledge.install REPORT_TARGETS = _build/debug/report/sledge_report.exe TARGETS = $(subst release,debug,$(RELEASE_TARGETS)) $(subst release,trace,$(RELEASE_TARGETS)) $(RELEASE_TARGETS) $(REPORT_TARGETS) _build/release/sledge-help.txt dune_build_release = dune build $(RELEASE_TARGETS) dune_install_release = dune install --context=release --prefix=_build/_install/release sledge 2>/dev/null dune_build_trace = $(subst release,trace,$(dune_build_release)) dune_install_trace = $(subst release,trace,$(dune_install_release)) dune_build_debug = $(subst release,debug,$(dune_build_release)) dune_install_debug = $(subst release,debug,$(dune_install_release)) .PHONY: check check: dune build @check .PHONY: exes exes: dune build $(TARGETS) $(dune_install_debug) $(dune_install_trace) $(dune_install_release) .PHONY: debug debug: $(dune_build_debug) $(dune_install_debug) .PHONY: trace trace: $(dune_build_trace) $(dune_install_trace) .PHONY: release release: $(dune_build_release) $(dune_install_release) .PHONY: report report: dune build $(REPORT_TARGETS) .PHONY: watch watch: dune build --watch --terminal-persistence=clear-on-rebuild $(TARGETS) .PHONY: test test: -dune build @_build/debug/runtest --auto-promote dune build @_build/debug/fmt --auto-promote 2>/dev/null .PHONY: ci-test ci-test: dune build @_build/debug/runtest .PHONY: clean clean: dune clean .PHONY: fmt fmt: -dune build @_build/debug/fmt --auto-promote 2>/dev/null tmp=$(mktemp -t 'dune-format'); dune format-dune-file dune-project > tmp; mv -f tmp dune-project tmp=$(mktemp -t 'dune-format'); dune format-dune-file dune-workspace > tmp; mv -f tmp dune-workspace clang-format -i model/llair_intrinsics.h model/cxxabi.cpp ${MAKE} -C test fmt OCAMLFORMAT_EXE = ocamlformat OCAMLFORMAT_ARGS = .PHONY: fmt_all fmt_all: parallel $(OCAMLFORMAT_EXE) $(OCAMLFORMAT_ARGS) -i ::: $(shell find * \( -name _build -or -name llvm \) -not -prune -or \( -name '*'.ml -or -name '*'.mli \) -print 2>/dev/null) # print any variable for Makefile debugging print-%: @printf '$*='; printf '$($*)'; printf '\n'