sogo/UI/WebServerResources/GNUmakefile
C Robert f0282f694d Monotone-Parent: 4688dea10443d333b15ccb3db6b63dd630673d16
Monotone-Revision: 71124a5805a6acd533a352015d2c6fe9c134f725

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-06-29T18:37:57
Monotone-Branch: ca.inverse.sogo
2009-06-29 18:37:57 +00:00

24 lines
567 B
Makefile

# GNUstep makefile
include ../common.make
WEBSERVER_RESOURCE_FILES = $(shell ls *css *ico *js *gif *png *html *txt)
all ::
install ::
@if [ -L "$(SOGO_WEBSERVERRESOURCESDIR)" ]; then \
echo "$(SOGO_WEBSERVERRESOURCESDIR) is a symbolic link (for development?). Installation skipped."; \
else \
mkdir -p $(SOGO_WEBSERVERRESOURCESDIR); \
cp $(WEBSERVER_RESOURCE_FILES) $(SOGO_WEBSERVERRESOURCESDIR); \
cp -r ckeditor $(SOGO_WEBSERVERRESOURCESDIR); \
cp -r scriptaculous $(SOGO_WEBSERVERRESOURCESDIR); \
fi
clean ::
distclean :: clean
uninstall ::