From: sreitenbach Date: Wed, 6 Feb 2008 19:29:38 +0000 (+0000) Subject: Add missing GNUmakefile X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3cb937952b50ddff97f2a324abb6851f4f8f863;p=scalable-opengroupware.org Add missing GNUmakefile git-svn-id: http://svn.opengroupware.org/SOGo/inverse/branches/1.0-gsmake2@1357 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/UI/WebServerResources/GNUmakefile b/UI/WebServerResources/GNUmakefile new file mode 100644 index 00000000..b3f7b782 --- /dev/null +++ b/UI/WebServerResources/GNUmakefile @@ -0,0 +1,17 @@ +# GNUstep makefile + +include ../common.make + +WEBSERVER_RESOURCE_FILES = $(shell ls *css *ico *js *.jpg *gif *png *html *txt) + +all :: + +install :: + mkdir -p ${SOGO_WEBSERVERRESOURCESDIR} + cp $(WEBSERVER_RESOURCE_FILES) ${SOGO_WEBSERVERRESOURCESDIR} + +clean :: + +distclean :: clean + +uninstall ::