Print directories for verbose build to create build.log for vscode.

This commit is contained in:
Michael Mueller
2023-08-07 18:11:32 +02:00
parent e4f43c1edd
commit ecf760f4b5
3 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ INSTALL_DIR := $(CURDIR)/bin
export BASE_DIR ?= ../base export BASE_DIR ?= ../base
export REPOSITORIES ?= $(BASE_DIR:%base=%base-linux) $(BASE_DIR) export REPOSITORIES ?= $(BASE_DIR:%base=%base-linux) $(BASE_DIR)
export VERBOSE ?= @ export VERBOSE ?= @
export VERBOSE_DIR ?= --no-print-directory export VERBOSE_DIR ?= --print-directory
export VERBOSE_MK ?= @ export VERBOSE_MK ?= @
export LIB_CACHE_DIR ?= $(BUILD_BASE_DIR)/var/libcache export LIB_CACHE_DIR ?= $(BUILD_BASE_DIR)/var/libcache
export LIB_PROGRESS_LOG ?= $(BUILD_BASE_DIR)/progress.log export LIB_PROGRESS_LOG ?= $(BUILD_BASE_DIR)/progress.log

View File

@@ -9,7 +9,7 @@ VERBOSE ?= @
ECHO := echo -e ECHO := echo -e
HASHSUM := sha1sum HASHSUM := sha1sum
MAKEFLAGS += --no-print-directory MAKEFLAGS += --print-directory
BRIGHT_COL ?= \x1b[01;33m BRIGHT_COL ?= \x1b[01;33m
DARK_COL ?= \x1b[00;33m DARK_COL ?= \x1b[00;33m

View File

@@ -7,7 +7,7 @@
# #
ifndef VERBOSE ifndef VERBOSE
MAKEFLAGS += --no-print-directory MAKEFLAGS += --print-directory
endif endif
export GENODE_DIR := $(realpath $(dir $(MAKEFILE_LIST))/../..) export GENODE_DIR := $(realpath $(dir $(MAKEFILE_LIST))/../..)