mk files
This commit is contained in:
parent
fe9710b47a
commit
0b26e5511f
2 changed files with 36 additions and 16 deletions
26
Makefile
Normal file
26
Makefile
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
IGNORE_DEPS += edown eper eunit_formatters meck node_package rebar_lock_deps_plugin rebar_vsn_plugin reltool_util
|
||||||
|
C_SRC_DIR = /path/do/not/exist
|
||||||
|
C_SRC_TYPE = rebar
|
||||||
|
DRV_CFLAGS = -fPIC
|
||||||
|
export DRV_CFLAGS
|
||||||
|
ERLANG_ARCH = 64
|
||||||
|
export ERLANG_ARCH
|
||||||
|
ERLC_OPTS = +debug_info
|
||||||
|
|
||||||
|
DEPS += lz4
|
||||||
|
dep_lz4 = git https://github.com/nhs-riak/erlang-lz4 nhse-develop-3.4
|
||||||
|
DEPS += zstd
|
||||||
|
dep_zstd = git https://github.com/nhs-riak/zstd-erlang nhse-develop
|
||||||
|
DEPS += eqwalizer_support
|
||||||
|
dep_eqwalizer_support = git-subfolder https://github.com/OpenRiak/eqwalizer.git openriak-3.4 eqwalizer_support
|
||||||
|
|
||||||
|
|
||||||
|
rebar_dep: preprocess pre-deps deps pre-app app
|
||||||
|
|
||||||
|
preprocess::
|
||||||
|
|
||||||
|
pre-deps::
|
||||||
|
|
||||||
|
pre-app::
|
||||||
|
|
||||||
|
include $(if $(ERLANG_MK_FILENAME),$(ERLANG_MK_FILENAME),erlang.mk)
|
|
@ -1,16 +1,10 @@
|
||||||
{application, leveled,
|
{application,leveled,
|
||||||
[
|
[{description,"Key Value store based on LSM-Tree and designed for larger values"},
|
||||||
{description, "Key Value store based on LSM-Tree and designed for larger values"},
|
{vsn,"1.1.0-21-gfe9710b"},
|
||||||
{vsn, git},
|
{registered,[]},
|
||||||
{registered, []},
|
{applications,[kernel,stdlib,lz4,zstd]},
|
||||||
{applications, [
|
{maintainers,["Martin Sumner"]},
|
||||||
kernel,
|
{licenses,["Apache"]},
|
||||||
stdlib,
|
{links,[{"Github","https://github.com/martinsumner/leveled"}]},
|
||||||
lz4,
|
{env,[{root_path,"test"}]},
|
||||||
zstd
|
{modules,[]}]}.
|
||||||
]},
|
|
||||||
{maintainers, ["Martin Sumner"]},
|
|
||||||
{licenses, ["Apache"]},
|
|
||||||
{links, [{"Github", "https://github.com/martinsumner/leveled"}]},
|
|
||||||
{env, [{root_path, "test"}]}
|
|
||||||
]}.
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue