changed language before .o files to say building rather than compiling (since a cpp...
authorChris Koeritz <fred@gruntose.com>
Thu, 3 Dec 2015 18:51:56 +0000 (13:51 -0500)
committerChris Koeritz <fred@gruntose.com>
Thu, 3 Dec 2015 18:51:56 +0000 (13:51 -0500)
scripts/clam/cpp/rules.def

index 98baec5e8ed8b9fdc99fb79b1fd31fce32b95b10..e42bd7f86108b63db28c400e19eccbfd39f1c4dc 100644 (file)
@@ -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