swh:1:snp:9c27352633c4639a943e316050a7b904f57900e2
Raw File
Tip revision: b4495568cb2c10d52dcc8fe358cc25bfd0e80357 authored by Milo Davis on 30 November 2017, 13:50:36 UTC
Fixes OSX select exception
Tip revision: b449556
Makefile

DEV ?= --dev

all:
	@jbuilder build tezos.install ${DEV}
	@cp _build/default/src/node_main.exe tezos-node
	@cp _build/default/src/client_main.exe tezos-client
	@cp _build/default/src/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