mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Implemented new target shared-instance-bundle-copy_into_dir
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@14886 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2b4d616f07
commit
01ff79c414
1 changed files with 8 additions and 1 deletions
|
@ -109,6 +109,7 @@
|
|||
#
|
||||
# shared-instance-bundle-install
|
||||
# shared-instance-bundle-uninstall
|
||||
# shared-instance-bundle-copy_into_dir
|
||||
#
|
||||
|
||||
#
|
||||
|
@ -138,7 +139,8 @@ shared-instance-bundle-all \
|
|||
shared-instance-bundle-all-resources \
|
||||
shared-instance-bundle-all-gsweb \
|
||||
shared-instance-bundle-install \
|
||||
shared-instance-bundle-uninstall
|
||||
shared-instance-bundle-uninstall \
|
||||
shared-instance-bundle-copy_into_dir
|
||||
|
||||
ifneq ($(RESOURCE_DIRS),)
|
||||
|
||||
|
@ -355,5 +357,10 @@ ifneq ($(CHOWN_TO),)
|
|||
$(GNUSTEP_SHARED_BUNDLE_INSTALL_DIR)/$(GNUSTEP_SHARED_BUNDLE_MAIN_PATH)
|
||||
endif
|
||||
|
||||
shared-instance-bundle-copy_into_dir::
|
||||
$(ECHO_COPYING_BUNDLE_INTO_DIR)rm -rf $(COPY_INTO_DIR)/$(GNUSTEP_SHARED_BUNDLE_MAIN_PATH); \
|
||||
$(TAR) chf - $(GNUSTEP_SHARED_BUNDLE_MAIN_PATH) \
|
||||
| (cd $(COPY_INTO_DIR); $(TAR) xf -)$(END_ECHO)
|
||||
|
||||
shared-instance-bundle-uninstall::
|
||||
(cd $(GNUSTEP_SHARED_BUNDLE_INSTALL_DIR); rm -rf $(GNUSTEP_SHARED_BUNDLE_MAIN_PATH))
|
||||
|
|
Loading…
Reference in a new issue