Jbuildet: tezos-node-db
-> tezos-storage
This commit is contained in:
parent
ab5b597eb1
commit
3f354e7d78
8
Makefile
8
Makefile
@ -3,11 +3,11 @@ DEV ?= --dev
|
|||||||
|
|
||||||
all:
|
all:
|
||||||
@jbuilder build ${DEV} \
|
@jbuilder build ${DEV} \
|
||||||
src/node_main.exe \
|
bin_node/main.exe \
|
||||||
src/client_main.exe \
|
bin_client/main.exe \
|
||||||
lib_protocol_compiler/main.exe
|
lib_protocol_compiler/main.exe
|
||||||
@cp _build/default/src/node_main.exe tezos-node
|
@cp _build/default/bin_node/main.exe tezos-node
|
||||||
@cp _build/default/src/client_main.exe tezos-client
|
@cp _build/default/bin_client/main.exe tezos-client
|
||||||
@cp _build/default/lib_protocol_compiler/main.exe tezos-protocol-compiler
|
@cp _build/default/lib_protocol_compiler/main.exe tezos-protocol-compiler
|
||||||
|
|
||||||
doc-html:
|
doc-html:
|
||||||
|
@ -4,16 +4,16 @@
|
|||||||
((name tezos_client_base)
|
((name tezos_client_base)
|
||||||
(public_name tezos-client-base)
|
(public_name tezos-client-base)
|
||||||
(libraries (tezos-base
|
(libraries (tezos-base
|
||||||
|
tezos-storage
|
||||||
tezos-node-shell
|
tezos-node-shell
|
||||||
tezos-node-net
|
tezos-node-net
|
||||||
tezos-node-db
|
|
||||||
tezos-node-updater
|
tezos-node-updater
|
||||||
tezos-protocol-compiler))
|
tezos-protocol-compiler))
|
||||||
(flags (:standard -w -9+27-30-32-40@8
|
(flags (:standard -w -9+27-30-32-40@8
|
||||||
-safe-string
|
-safe-string
|
||||||
-open Tezos_base__TzPervasives
|
-open Tezos_base__TzPervasives
|
||||||
|
-open Tezos_storage
|
||||||
-open Tezos_node_net
|
-open Tezos_node_net
|
||||||
-open Tezos_node_db
|
|
||||||
-open Tezos_node_updater
|
-open Tezos_node_updater
|
||||||
-open Tezos_node_shell))))
|
-open Tezos_node_shell))))
|
||||||
|
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
((name tezos_node_shell)
|
((name tezos_node_shell)
|
||||||
(public_name tezos-node-shell)
|
(public_name tezos-node-shell)
|
||||||
(libraries (tezos-base
|
(libraries (tezos-base
|
||||||
|
tezos-storage
|
||||||
tezos-node-net
|
tezos-node-net
|
||||||
tezos-node-db
|
|
||||||
tezos-node-updater))
|
tezos-node-updater))
|
||||||
(flags (:standard -w -9+27-30-32-40@8
|
(flags (:standard -w -9+27-30-32-40@8
|
||||||
-safe-string
|
-safe-string
|
||||||
-open Tezos_base__TzPervasives
|
-open Tezos_base__TzPervasives
|
||||||
-open Tezos_node_db
|
-open Tezos_storage
|
||||||
-open Tezos_node_net
|
-open Tezos_node_net
|
||||||
-open Tezos_node_updater))))
|
-open Tezos_node_updater))))
|
||||||
|
|
||||||
|
@ -6,16 +6,16 @@
|
|||||||
(libraries (tezos-base
|
(libraries (tezos-base
|
||||||
tezos-micheline
|
tezos-micheline
|
||||||
tezos-protocol-compiler
|
tezos-protocol-compiler
|
||||||
|
tezos-storage
|
||||||
tezos-node-net
|
tezos-node-net
|
||||||
tezos-node-db
|
|
||||||
dynlink))
|
dynlink))
|
||||||
(flags (:standard -w -9+27-30-32-40@8
|
(flags (:standard -w -9+27-30-32-40@8
|
||||||
-safe-string
|
-safe-string
|
||||||
-open Tezos_base__TzPervasives
|
-open Tezos_base__TzPervasives
|
||||||
-open Tezos_micheline
|
-open Tezos_micheline
|
||||||
-open Tezos_protocol_compiler
|
-open Tezos_protocol_compiler
|
||||||
-open Tezos_node_net
|
-open Tezos_storage
|
||||||
-open Tezos_node_db))))
|
-open Tezos_node_net))))
|
||||||
|
|
||||||
(alias
|
(alias
|
||||||
((name runtest_indent)
|
((name runtest_indent)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
(jbuild_version 1)
|
(jbuild_version 1)
|
||||||
|
|
||||||
(library
|
(library
|
||||||
((name tezos_node_db)
|
((name tezos_storage)
|
||||||
(public_name tezos-node-db)
|
(public_name tezos-storage)
|
||||||
(libraries (tezos-base
|
(libraries (tezos-base
|
||||||
leveldb
|
leveldb
|
||||||
irmin-leveldb))
|
irmin-leveldb))
|
@ -5,8 +5,8 @@
|
|||||||
test_state
|
test_state
|
||||||
test_store))
|
test_store))
|
||||||
(libraries (tezos-base
|
(libraries (tezos-base
|
||||||
|
tezos-storage
|
||||||
tezos-node-shell
|
tezos-node-shell
|
||||||
tezos-node-db
|
|
||||||
tezos-embedded-protocol-demo
|
tezos-embedded-protocol-demo
|
||||||
tezos-embedded-protocol-alpha
|
tezos-embedded-protocol-alpha
|
||||||
tezos-embedded-protocol-genesis
|
tezos-embedded-protocol-genesis
|
||||||
@ -14,8 +14,8 @@
|
|||||||
(flags (:standard -w -9-32
|
(flags (:standard -w -9-32
|
||||||
-safe-string
|
-safe-string
|
||||||
-open Tezos_base__TzPervasives
|
-open Tezos_base__TzPervasives
|
||||||
-open Tezos_node_shell
|
-open Tezos_storage
|
||||||
-open Tezos_node_db))))
|
-open Tezos_node_shell))))
|
||||||
|
|
||||||
(alias
|
(alias
|
||||||
((name buildtest)
|
((name buildtest)
|
||||||
|
Loading…
Reference in New Issue
Block a user