From 2ff78150604b2ae5d07840d65bbe7567212c2f6e Mon Sep 17 00:00:00 2001 From: Thomas Walker Lynch Date: Fri, 17 Oct 2025 06:46:11 +0000 Subject: [PATCH] build env --- developer/make/target_kmod.mk | 3 +-- developer/make/target_lib_cli.mk | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/developer/make/target_kmod.mk b/developer/make/target_kmod.mk index 2a77560..6481f19 100644 --- a/developer/make/target_kmod.mk +++ b/developer/make/target_kmod.mk @@ -21,8 +21,7 @@ usage: version: @echo target_kmod version 1.0 -.PHONY: information,info -info: +.PHONY: information information: @printf "· → Unicode middle dot — visible: [%b]\n" "·" @echo "SOURCE_DIR: " $(SOURCE_DIR) diff --git a/developer/make/target_lib_cli.mk b/developer/make/target_lib_cli.mk index 2401fe2..e933824 100644 --- a/developer/make/target_lib_cli.mk +++ b/developer/make/target_lib_cli.mk @@ -8,7 +8,7 @@ # bail early if there is no compiler ifeq ($(C),) - $(error target_lib_cli.mk: no C compiler specified.) + @printf "target_lib_cli.mk: no C compiler specified.\n" endif # keep only the source directories that are in the file system @@ -16,8 +16,7 @@ SRCDIR_LIST := $(wildcard $(SRCDIR_LIST)) # bail early if the SRCDIR_list is empty ifeq ($(SRCDIR_LIST),) - @printf "target_lib_cli.mk: empty SRCDIR_LIST" - exit 0 + @printf "target_lib_cli.mk: empty SRCDIR_LIST\n" endif # duplicate source file names in different directories will cause -- 2.20.1