swh:1:snp:9c27352633c4639a943e316050a7b904f57900e2
Raw File
Tip revision: 7807f7aa4d01b246491a972f7dddad9580d65a58 authored by Grégoire Henry on 05 December 2017, 14:17:54 UTC
Context: switch to blake2B
Tip revision: 7807f7a
Makefile

DEV ?= --dev

all:
	@jbuilder build ${DEV} \
		bin_node/main.exe \
		bin_client/main.exe \
		lib_protocol_compiler/main.exe
	@cp _build/default/bin_node/main.exe tezos-node
	@cp _build/default/bin_client/main.exe tezos-client
	@cp _build/default/lib_protocol_compiler/main.exe tezos-protocol-compiler

doc-html:
	@jbuilder build @doc ${DEV}

build-test:
	@jbuilder build @buildtest ${DEV}

test:
	@jbuilder runtest ${DEV}

build-deps:
	@./scripts/install_build_deps.sh

docker-image:
	@./scripts/create_docker_image.sh

clean:
	@-jbuilder clean
	@-rm -f tezos-node tezos-client tezos-protocol-compiler

.PHONY: all test build-deps docker-image clean
back to top