From d19976afd5c7b6175c12736094c5f96ed43abc81 Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Sat, 19 Oct 2024 18:56:12 +0800 Subject: [PATCH] ... --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c6ef140..00aefec 100644 --- a/Makefile +++ b/Makefile @@ -26,10 +26,12 @@ print-version: @echo "Release Date: $(current_date)" src_all: - $(MAKE) -C $(svc_root)/src + @echo "make all src programs ..." + @$(MAKE) -C $(svc_root)/src 1>make.log 2>&1 plat_all: - $(MAKE) -C $(svc_root)/plat + @echo "make all plat modules ..." + @$(MAKE) -C $(svc_root)/plat 1>make.log 2>&1 src_clean: $(MAKE) -C $(svc_root)/src src_clean