2018-03-25 07:21:37 +00:00
|
|
|
####################################################################################
|
2021-09-13 20:50:01 +00:00
|
|
|
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
|
|
|
|
## SPDX short identifier: BSD-1-Clause
|
2018-03-25 07:21:37 +00:00
|
|
|
####################################################################################
|
|
|
|
|
|
|
|
ifdef MAKE_TERMOUT
|
|
|
|
ESC:=$(shell printf '\033')
|
|
|
|
GREEN:=$(ESC)[1;32m
|
|
|
|
RED:=$(ESC)[1;31m
|
|
|
|
HL:=$(ESC)[0;33m
|
|
|
|
NC:=$(ESC)[0m
|
|
|
|
else
|
|
|
|
GREEN:=
|
|
|
|
RED:=
|
|
|
|
HL:=
|
|
|
|
NC:=
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(VERBOSE),1)
|
|
|
|
MAKEFLAGS += --quiet
|
|
|
|
|
|
|
|
# build - Run a build command
|
|
|
|
# $(1): Command to execute
|
|
|
|
# $(2): Logfile name
|
|
|
|
# $(3): Textual description of the task
|
|
|
|
define build
|
|
|
|
@echo -n "Building $(strip $(3)) [$(HL)$(CURDIR)/$(strip $(2))$(NC)] ..."
|
|
|
|
$(strip $(1)) >> $(strip $(2)) 2>&1; \
|
|
|
|
(ERR=$$?; if [ $$ERR = 0 ]; then \
|
|
|
|
echo " $(GREEN)OK$(NC)"; \
|
|
|
|
else \
|
2018-04-12 08:14:08 +00:00
|
|
|
echo " $(RED)FAILED$(NC)"; \
|
|
|
|
echo "For details see $(HL)$(CURDIR)/$(strip $(2))$(NC)"; \
|
|
|
|
echo ""; \
|
2018-03-25 07:21:37 +00:00
|
|
|
fi; exit $$ERR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
# clean - Run a clean command
|
|
|
|
# $(1): Files to remove
|
|
|
|
# $(2): Textural description of the task
|
|
|
|
define clean
|
|
|
|
@echo "Cleaning $(strip $(2)) ..."
|
|
|
|
-rm -rf $(strip $(1))
|
|
|
|
endef
|
|
|
|
else
|
|
|
|
define build
|
|
|
|
$(strip $(1)) >> $(strip $(2)) 2>&1
|
|
|
|
endef
|
|
|
|
|
|
|
|
define clean
|
|
|
|
-rm -rf $(strip $(1))
|
|
|
|
endef
|
|
|
|
endif
|