]> err.no Git - scalable-opengroupware.org/commitdiff
Add missing GNUmakefile
authorsreitenbach <sreitenbach@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 6 Feb 2008 19:29:38 +0000 (19:29 +0000)
committersreitenbach <sreitenbach@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 6 Feb 2008 19:29:38 +0000 (19:29 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/branches/1.0-gsmake2@1357 d1b88da0-ebda-0310-925b-ed51d893ca5b

UI/WebServerResources/GNUmakefile [new file with mode: 0644]

diff --git a/UI/WebServerResources/GNUmakefile b/UI/WebServerResources/GNUmakefile
new file mode 100644 (file)
index 0000000..b3f7b78
--- /dev/null
@@ -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 ::