From d7945be1d3e1c49781c6121d978e9c9d4d52f617 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Thu, 3 Dec 2015 13:51:56 -0500 Subject: [PATCH] changed language before .o files to say building rather than compiling (since a cpp or c file is compiled, not the .obj) --- scripts/clam/cpp/rules.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/clam/cpp/rules.def b/scripts/clam/cpp/rules.def index 98baec5e..e42bd7f8 100644 --- a/scripts/clam/cpp/rules.def +++ b/scripts/clam/cpp/rules.def @@ -398,7 +398,7 @@ endif $(OBJECT_DIR)/%.obj: $(CURRENT_DIR)/%.cpp ifeq "$(NO_COMPILE)" "" ifneq "$(COMPILER)" "VISUAL_CPP" - @echo Compiling [$(shell basename $@)] + @echo Building [$(shell basename $@)] $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi' $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@ else @@ -415,7 +415,7 @@ endif $(OBJECT_DIR)/%.obj: $(CURRENT_DIR)/%.c ifeq "$(NO_COMPILE)" "" ifneq "$(COMPILER)" "VISUAL_CPP" - @echo Compiling [$@] + @echo Building [$@] $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi' $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@ else -- 2.34.1