nimbus-eth1/common.mk

32 lines
730 B
Makefile
Raw Normal View History

SHELL := bash # the shell used internally by "make"
#- extra parameters for the Nim compiler
#- NIMFLAGS should come from the environment or make's command line
NIM_PARAMS := $(NIMFLAGS)
2019-03-29 17:08:39 +00:00
# verbosity level
2019-03-29 17:08:39 +00:00
V := 0
NIM_PARAMS := $(NIM_PARAMS) --verbosity:$(V)
HANDLE_OUTPUT :=
2019-03-29 17:08:39 +00:00
SILENT_TARGET_PREFIX := disabled
ifeq ($(V), 0)
NIM_PARAMS := $(NIM_PARAMS) --hints:off --warnings:off
HANDLE_OUTPUT := &>/dev/null
2019-03-29 17:08:39 +00:00
SILENT_TARGET_PREFIX :=
endif
2019-03-29 17:08:39 +00:00
# Chronicles log level
LOG_LEVEL :=
ifdef LOG_LEVEL
NIM_PARAMS := $(NIM_PARAMS) -d:chronicles_log_level=$(LOG_LEVEL)
endif
# guess who does parsing before variable expansion
COMMA := ,
EMPTY :=
SPACE := $(EMPTY) $(EMPTY)
2019-03-29 17:08:39 +00:00
# coloured messages
BUILD_MSG := "\\e[92mBuilding:\\e[39m"