2002-06-13 16:03:28 +00:00
|
|
|
#
|
|
|
|
# messages.make
|
|
|
|
#
|
|
|
|
# Prepare messages
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Nicola Pero <n.pero@mi.flashnet.it>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Makefile Package.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public
|
|
|
|
# License along with this library; see the file COPYING.LIB.
|
|
|
|
# If not, write to the Free Software Foundation,
|
2005-05-22 03:20:14 +00:00
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-06-13 16:03:28 +00:00
|
|
|
|
2002-10-22 00:23:02 +00:00
|
|
|
# Helpful messages which are always printed
|
|
|
|
|
|
|
|
# Instance/Shared/strings.make
|
|
|
|
ALWAYS_ECHO_NO_FILES = @(echo " No files specified ... nothing done.")
|
|
|
|
ALWAYS_ECHO_NO_LANGUAGES = @(echo " No LANGUAGES specified ... nothing done.")
|
|
|
|
|
|
|
|
# Eventual translation of the ALWAYS_ECHO_XXX messages should be done
|
|
|
|
# here ...
|
|
|
|
|
2002-06-13 16:03:28 +00:00
|
|
|
ifneq ($(messages),yes)
|
|
|
|
|
|
|
|
# General messages
|
2003-04-14 10:51:49 +00:00
|
|
|
ECHO_PREPROCESSING = @(echo " Preprocessing file $< ...";
|
2002-06-13 16:03:28 +00:00
|
|
|
ECHO_COMPILING = @(echo " Compiling file $< ...";
|
|
|
|
ECHO_LINKING = @(echo " Linking $(GNUSTEP_TYPE) $(GNUSTEP_INSTANCE) ...";
|
|
|
|
ECHO_JAVAHING = @(echo " Running javah on $< ...";
|
|
|
|
ECHO_INSTALLING = @(echo " Installing $(GNUSTEP_TYPE) $(GNUSTEP_INSTANCE)...";
|
2003-05-27 10:01:36 +00:00
|
|
|
ECHO_UNINSTALLING = @(echo " Uninstalling $(GNUSTEP_TYPE) $(GNUSTEP_INSTANCE)...";
|
2002-10-31 13:56:49 +00:00
|
|
|
ECHO_COPYING_INTO_DIR = @(echo " Copying $(GNUSTEP_TYPE) $(GNUSTEP_INSTANCE) into $(COPY_INTO_DIR)...";
|
2003-05-27 09:54:00 +00:00
|
|
|
ECHO_CREATING = @(echo " Creating $@...";
|
2003-05-27 11:00:31 +00:00
|
|
|
ECHO_CHOWNING = @(echo " Fixing ownership of installed file(s)...";
|
|
|
|
ECHO_STRIPPING = @(echo " Stripping object file...";
|
2003-05-27 09:54:00 +00:00
|
|
|
|
|
|
|
# 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 = @(
|
2002-06-13 16:03:28 +00:00
|
|
|
|
|
|
|
# Instance/Shared/bundle.make
|
|
|
|
ECHO_COPYING_RESOURCES = @(echo " Copying resources into the $(GNUSTEP_TYPE) wrapper...";
|
|
|
|
ECHO_COPYING_LOC_RESOURCES = @(echo " Copying localized resources into the $(GNUSTEP_TYPE) wrapper...";
|
|
|
|
ECHO_CREATING_LOC_RESOURCE_DIRS = @(echo " Creating localized resource dirs into the $(GNUSTEP_TYPE) wrapper...";
|
|
|
|
ECHO_COPYING_RESOURCES_FROM_SUBPROJS = @(echo " Copying resources from subprojects into the $(GNUSTEP_TYPE) wrapper...";
|
|
|
|
ECHO_COPYING_WEBSERVER_RESOURCES = @(echo " Copying webserver resources into the $(GNUSTEP_TYPE) wrapper...";
|
|
|
|
ECHO_COPYING_WEBSERVER_LOC_RESOURCES = @(echo " Copying localized webserver resources into the $(GNUSTEP_TYPE) wrapper...";
|
|
|
|
ECHO_CREATING_WEBSERVER_LOC_RESOURCE_DIRS = @(echo " Creating localized webserver resource dirs into the $(GNUSTEP_TYPE) wrapper...";
|
2002-09-26 01:10:17 +00:00
|
|
|
ECHO_INSTALLING_BUNDLE = @(echo " Installing bundle directory...";
|
2002-10-31 13:56:49 +00:00
|
|
|
ECHO_COPYING_BUNDLE_INTO_DIR = @(echo " Copying bundle directory into $(COPY_INTO_DIR)...";
|
2002-06-13 16:03:28 +00:00
|
|
|
|
|
|
|
# Instance/Shared/headers.make
|
|
|
|
ECHO_INSTALLING_HEADERS = @(echo " Installing headers...";
|
|
|
|
|
|
|
|
# Instance/Shared/java.make
|
|
|
|
ECHO_INSTALLING_CLASS_FILES = @(echo " Installing class files...";
|
|
|
|
ECHO_INSTALLING_ADD_CLASS_FILES = @(echo " Installing nested class files...";
|
|
|
|
ECHO_INSTALLING_PROPERTIES_FILES = @(echo " Installing property files...";
|
|
|
|
|
2002-10-22 00:23:02 +00:00
|
|
|
# Instance/Shared/strings.make
|
|
|
|
ECHO_MAKING_STRINGS = @(echo " Making/updating strings files...";
|
|
|
|
|
2003-07-22 08:48:47 +00:00
|
|
|
# Instance/Documentation/autogsdoc.make
|
|
|
|
ECHO_AUTOGSDOC = @(echo " Generating reference documentation...";
|
|
|
|
|
2002-06-13 16:03:28 +00:00
|
|
|
END_ECHO = )
|
|
|
|
|
2002-06-13 16:11:02 +00:00
|
|
|
#
|
|
|
|
# Translation of messages:
|
|
|
|
#
|
|
|
|
# In case a translation is appropriate (FIXME - decide how to
|
|
|
|
# determine if this is the case), here we will determine which
|
|
|
|
# translated messages.make file to use, and include it here; this file
|
|
|
|
# can override any of the ECHO_XXX variables providing new definitions
|
|
|
|
# which print out the translated messages. (if it fails to provide a
|
|
|
|
# translation of any variable, the original untranslated message would
|
|
|
|
# then be automatically print out).
|
|
|
|
#
|
2002-06-13 16:03:28 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2003-05-27 10:01:36 +00:00
|
|
|
ECHO_PREPROCESSING =
|
2002-06-13 16:03:28 +00:00
|
|
|
ECHO_COMPILING =
|
|
|
|
ECHO_LINKING =
|
|
|
|
ECHO_JAVAHING =
|
|
|
|
ECHO_INSTALLING =
|
2003-05-27 10:01:36 +00:00
|
|
|
ECHO_UNINSTALLING =
|
2002-10-31 13:56:49 +00:00
|
|
|
ECHO_COPYING_INTO_DIR =
|
2003-05-27 09:54:00 +00:00
|
|
|
ECHO_CREATING =
|
|
|
|
ECHO_NOTHING =
|
2003-05-27 11:00:31 +00:00
|
|
|
ECHO_CHOWNING =
|
|
|
|
ECHO_STRIPPING =
|
2002-06-13 16:03:28 +00:00
|
|
|
|
|
|
|
ECHO_COPYING_RESOURCES =
|
|
|
|
ECHO_COPYING_LOC_RESOURCES =
|
|
|
|
ECHO_CREATING_LOC_RESOURCE_DIRS =
|
|
|
|
ECHO_COPYING_RESOURCES_FROM_SUBPROJS =
|
|
|
|
ECHO_COPYING_WEBSERVER_RESOURCES =
|
|
|
|
ECHO_COPYING_WEBSERVER_LOC_RESOURCES =
|
|
|
|
ECHO_CREATING_WEBSERVER_LOC_RESOURCE_DIRS =
|
2002-09-26 01:10:17 +00:00
|
|
|
ECHO_INSTALLING_BUNDLE =
|
2002-10-31 13:56:49 +00:00
|
|
|
ECHO_COPYING_BUNDLE_INTO_DIR =
|
2002-06-13 16:03:28 +00:00
|
|
|
|
|
|
|
ECHO_INSTALLING_HEADERS =
|
|
|
|
|
|
|
|
ECHO_INSTALLING_CLASS_FILES =
|
|
|
|
ECHO_INSTALLING_ADD_CLASS_FILES =
|
|
|
|
ECHO_INSTALLING_PROPERTIES_FILES =
|
|
|
|
|
2002-10-22 00:23:02 +00:00
|
|
|
ECHO_MAKING_STRINGS =
|
2003-07-22 08:48:47 +00:00
|
|
|
ECHO_AUTOGSDOC =
|
2002-10-22 00:23:02 +00:00
|
|
|
|
2002-06-13 16:03:28 +00:00
|
|
|
END_ECHO =
|
|
|
|
|
|
|
|
endif
|
2002-06-13 16:11:02 +00:00
|
|
|
|