From: Chris Koeritz Date: Thu, 3 Dec 2015 18:51:56 +0000 (-0500) Subject: changed language before .o files to say building rather than compiling (since a cpp... X-Git-Tag: 2.140.90~562 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=d7945be1d3e1c49781c6121d978e9c9d4d52f617;p=feisty_meow.git changed language before .o files to say building rather than compiling (since a cpp or c file is compiled, not the .obj) --- 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