https://github.com/lotusnprod/lotus-processor
Tip revision: 78e6065d8eb9d0b0d11c2ea8de6ac66b445bca0e authored by Adafede on 26 April 2022, 14:26:24 UTC
update expectations
update expectations
Tip revision: 78e6065
config.mk
# To run in full mode for the build turn that to full
# It can be done at run time by doing
# make MODE=full <target>
export MODE ?= min
export DATA_PATH ?= ${PWD}/data
export SRC_PATH ?= ${PWD}/src
export BIN_PATH ?= ${PWD}/bin
export TESTS_PATH ?= ${PWD}/tests
export GNFINDER_VERSION = v0.18.3
export GNVERIFIER_VERSION = v0.9.0
export OPSIN_VERSION = 2.6.0
export OTT_VERSION = 3.3
export GBIF_BACKBONE = 2021-11-26
export NPCLASSIFIER_VERSION = 1.5
export INDEX_VERSION = 1
export OSF_VALIDATION = vg2we
export ZENODO_CUSTOM_DIC = 6487114
export UNAME := $(shell uname)
PLATFORM := unsupported
ifeq ($(OS),Windows_NT)
PLATFORM := windows
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
PLATFORM := linux
endif
ifeq ($(UNAME_S),Darwin)
PLATFORM := mac
endif
endif
NPROCS := 1
ifeq ($(UNAME_S),Linux)
NPROCS := $(shell grep -c ^processor /proc/cpuinfo)
endif
ifeq ($(UNAME_S),Darwin)
NPROCS := $(shell sysctl -n hw.ncpu)
endif