Added general ECHO_CREATING and ECHO_NOTHING messages

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@16809 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2003-05-27 09:54:00 +00:00
parent 15f85dcd70
commit 31cc1ef279

View file

@ -37,6 +37,12 @@ ifneq ($(messages),yes)
ECHO_JAVAHING = @(echo " Running javah on $< ...";
ECHO_INSTALLING = @(echo " Installing $(GNUSTEP_TYPE) $(GNUSTEP_INSTANCE)...";
ECHO_COPYING_INTO_DIR = @(echo " Copying $(GNUSTEP_TYPE) $(GNUSTEP_INSTANCE) into $(COPY_INTO_DIR)...";
ECHO_CREATING = @(echo " Creating $@...";
# ECHO_NOTHING is still better than hardcoding @(, because ECHO_NOTHING
# prints nothing if messages=no, but it prints all messages when
# messages=yes, while hardcoding @( never prints anything.
ECHO_NOTHING = @(
# Instance/Shared/bundle.make
ECHO_COPYING_RESOURCES = @(echo " Copying resources into the $(GNUSTEP_TYPE) wrapper...";
@ -81,6 +87,8 @@ else
ECHO_JAVAHING =
ECHO_INSTALLING =
ECHO_COPYING_INTO_DIR =
ECHO_CREATING =
ECHO_NOTHING =
ECHO_COPYING_RESOURCES =
ECHO_COPYING_LOC_RESOURCES =