sogo/UI/WebServerResources/GNUmakefile
Wolfgang Sourdeau f5a98f3571 Monotone-Parent: 43675f1618c28a385375562d6eaf3afabaa316ae
Monotone-Revision: 261d328a4a30eba63838d32540b23a78ce2a3840

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-03-24T14:05:55
Monotone-Branch: ca.inverse.sogo
2009-03-24 14:05:55 +00:00

22 lines
462 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); \
fi
clean ::
distclean :: clean
uninstall ::