Added @ at the beginning of some rule commands to hide commands

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@10433 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-07-11 18:03:13 +00:00
parent cb81fc4b9c
commit 175d74a12b

View file

@ -157,7 +157,7 @@ endif
framework-resource-files::
ifneq ($(RESOURCE_FILES),)
echo "Copying resources into the framework wrapper..."; \
@ echo "Copying resources into the framework wrapper..."; \
for f in "$(RESOURCE_FILES)"; do \
cp -r $$f $(FRAMEWORK_VERSION_DIR_NAME)/Resources; \
done;
@ -165,7 +165,7 @@ endif
localized-framework-resource-files::
ifneq ($(LOCALIZED_RESOURCE_FILES),)
echo "Copying localized resources into the framework wrapper..."; \
@ echo "Copying localized resources into the framework wrapper..."; \
for l in $(LANGUAGES) __done; do \
if [ $$l != __done ]; then \
if [ ! -f $$l.lproj ]; then \
@ -194,7 +194,7 @@ framework-webresource-dir::
framework-webresource-files:: framework-webresource-dir
ifneq ($(WEBSERVER_RESOURCE_FILES),)
echo "Copying webserver resources into the framework wrapper..."; \
@ echo "Copying webserver resources into the framework wrapper..."; \
cd $(FRAMEWORK_VERSION_DIR_NAME)/WebServerResources; \
for ff in $(WEBSERVER_RESOURCE_FILES) __done; do \
if [ $$ff != __done ]; then \
@ -207,7 +207,7 @@ endif
framework-localized-webresource-files:: framework-webresource-dir
ifneq ($(LOCALIZED_WEBSERVER_RESOURCE_FILES),)
echo "Copying localized webserver resources into the framework wrapper..."; \
@ echo "Copying localized webserver resources into the framework wrapper..."; \
cd $(FRAMEWORK_VERSION_DIR_NAME)/WebServerResources; \
for l in $(LANGUAGES) __done; do \
if [ $$l != __done ]; then \