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:
Manuel Guesdon 2001-12-12 22:02:47 +00:00
parent 5a836a15ab
commit e4625d8224
2 changed files with 25 additions and 2 deletions

View file

@ -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

View file

@ -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