mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Wed Dec 12 22:59:00 2001 Manuel Guesdon <mguesdon@oxymium.net>
* gswapp.make: adding resource-dirs and webresource-dirs installation git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11733 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5a836a15ab
commit
e4625d8224
2 changed files with 25 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Dec 12 22:59:00 2001 Manuel Guesdon <mguesdon@oxymium.net>
|
||||
|
||||
* gswapp.make: adding resource-dirs and webresource-dirs
|
||||
installation
|
||||
|
||||
Wed Dec 12 17:12:54 2001 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* common.make: Moved all INSTALL_AS_USER and INSTALL_AS_GROUP
|
||||
|
|
22
gswapp.make
22
gswapp.make
|
@ -239,9 +239,18 @@ ifneq ($(strip $(COMPONENTS)),)
|
|||
endif
|
||||
|
||||
gswapp-webresource-dir:: $(GSWAPP_WEBSERVER_RESOURCE_DIRS)
|
||||
ifneq ($(strip $(WEBSERVER_RESOURCE_DIRS)),)
|
||||
@ echo "Linking webserver Resource Dirs into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/Resources; \
|
||||
for dir in $(WEBSERVER_RESOURCE_DIRS); do \
|
||||
if [ -d ../../$$dir ]; then \
|
||||
$(LN_S) -f ../../$$dir ./;\
|
||||
fi; \
|
||||
done;
|
||||
endif
|
||||
|
||||
$(GSWAPP_WEBSERVER_RESOURCE_DIRS):
|
||||
@$(MKDIRS) $(GSWAPP_WEBSERVER_RESOURCE_DIRS)
|
||||
#@$(MKDIRS) $(GSWAPP_WEBSERVER_RESOURCE_DIRS)
|
||||
|
||||
gswapp-webresource-files:: $(GSWAPP_DIR_NAME)/WebServerResources \
|
||||
gswapp-webresource-dir
|
||||
|
@ -276,9 +285,18 @@ ifneq ($(strip $(LOCALIZED_WEBSERVER_RESOURCE_FILES)),)
|
|||
endif
|
||||
|
||||
gswapp-resource-dir:: $(GSWAPP_RESOURCE_DIRS)
|
||||
ifneq ($(strip $(RESOURCE_DIRS)),)
|
||||
@ echo "Linking Resource Dirs into the application wrapper..."; \
|
||||
cd $(GSWAPP_DIR_NAME)/Resources; \
|
||||
for dir in $(RESOURCE_DIRS); do \
|
||||
if [ -d ../../$$dir ]; then \
|
||||
$(LN_S) -f ../../$$dir ./;\
|
||||
fi; \
|
||||
done;
|
||||
endif
|
||||
|
||||
$(GSWAPP_RESOURCE_DIRS):
|
||||
@$(MKDIRS) $(GSWAPP_RESOURCE_DIRS)
|
||||
#@$(MKDIRS) $(GSWAPP_RESOURCE_DIRS)
|
||||
|
||||
gswapp-resource-files:: $(GSWAPP_DIR_NAME)/Resources/Info-gnustep.plist \
|
||||
gswapp-resource-dir
|
||||
|
|
Loading…
Reference in a new issue