mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Improved echoing of messages during linking and installing
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@13872 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7e94806ef1
commit
442d420e92
2 changed files with 10 additions and 8 deletions
|
@ -74,10 +74,10 @@ $(PALETTE_DIR_NAME)/$(GNUSTEP_TARGET_LDIR):
|
|||
$(MKDIRS) $(PALETTE_DIR_NAME)/$(GNUSTEP_TARGET_LDIR)
|
||||
|
||||
$(PALETTE_FILE) : $(OBJ_FILES_TO_LINK)
|
||||
$(BUNDLE_LD) $(BUNDLE_LDFLAGS) $(ALL_LDFLAGS) \
|
||||
$(ECHO_LINKING)$(BUNDLE_LD) $(BUNDLE_LDFLAGS) $(ALL_LDFLAGS) \
|
||||
-o $(LDOUT)$(PALETTE_FILE) \
|
||||
$(OBJ_FILES_TO_LINK) \
|
||||
$(ALL_PALETTE_LIBS)
|
||||
$(ALL_PALETTE_LIBS)$(END_ECHO)
|
||||
|
||||
PRINCIPAL_CLASS = $(strip $($(GNUSTEP_INSTANCE)_PRINCIPAL_CLASS))
|
||||
|
||||
|
@ -121,7 +121,8 @@ $(PALETTE_DIR_NAME)/Resources/palette.table: $(PALETTE_DIR_NAME)/Resources
|
|||
#
|
||||
|
||||
internal-palette-install_:: $(PALETTE_INSTALL_DIR)
|
||||
tar cf - $(PALETTE_DIR_NAME) | (cd $(PALETTE_INSTALL_DIR); tar xf -)
|
||||
$(ECHO_INSTALLING)tar cf - $(PALETTE_DIR_NAME) \
|
||||
| (cd $(PALETTE_INSTALL_DIR); tar xf -)$(END_ECHO)
|
||||
ifneq ($(CHOWN_TO),)
|
||||
$(CHOWN) -R $(CHOWN_TO) $(PALETTE_INSTALL_DIR)/$(PALETTE_DIR_NAME)
|
||||
endif
|
||||
|
@ -130,7 +131,7 @@ ifeq ($(strip),yes)
|
|||
endif
|
||||
|
||||
$(PALETTE_INSTALL_DIR):
|
||||
$(MKINSTALLDIRS) $(PALETTE_INSTALL_DIR)
|
||||
@$(MKINSTALLDIRS) $(PALETTE_INSTALL_DIR)
|
||||
|
||||
internal-palette-uninstall_::
|
||||
rm -rf $(PALETTE_INSTALL_DIR)/$(PALETTE_DIR_NAME)
|
||||
|
|
|
@ -74,8 +74,8 @@ internal-service-all_:: $(GNUSTEP_OBJ_DIR) \
|
|||
shared-instance-bundle-all
|
||||
|
||||
$(SERVICE_FILE): $(OBJ_FILES_TO_LINK)
|
||||
$(LD) $(ALL_LDFLAGS) -o $(LDOUT)$@ $(OBJ_FILES_TO_LINK) \
|
||||
$(ALL_SERVICE_LIBS)
|
||||
$(ECHO_LINKING)$(LD) $(ALL_LDFLAGS) -o $(LDOUT)$@ $(OBJ_FILES_TO_LINK)\
|
||||
$(ALL_SERVICE_LIBS)$(END_ECHO)
|
||||
|
||||
$(SERVICE_DIR_NAME)/$(GNUSTEP_TARGET_LDIR):
|
||||
@$(MKDIRS) $(SERVICE_DIR_NAME)/$(GNUSTEP_TARGET_LDIR)
|
||||
|
@ -103,8 +103,9 @@ $(GNUSTEP_SERVICES):
|
|||
$(MKINSTALLDIRS) $@
|
||||
|
||||
internal-service-install_:: $(GNUSTEP_SERVICES)
|
||||
rm -rf $(GNUSTEP_SERVICES)/$(SERVICE_DIR_NAME); \
|
||||
$(TAR) cf - $(SERVICE_DIR_NAME) | (cd $(GNUSTEP_SERVICES); $(TAR) xf -)
|
||||
$(ECHO_INSTALLING)rm -rf $(GNUSTEP_SERVICES)/$(SERVICE_DIR_NAME); \
|
||||
$(TAR) cf - $(SERVICE_DIR_NAME) \
|
||||
| (cd $(GNUSTEP_SERVICES); $(TAR) xf -)$(END_ECHO)
|
||||
ifneq ($(CHOWN_TO),)
|
||||
$(CHOWN) -R $(CHOWN_TO) $(GNUSTEP_SERVICES)/$(SERVICE_DIR_NAME)
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue