From 98aaa0c1cf45f01d2cd0fdf98b05357a3f1a94a5 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 29 May 2013 18:16:38 +0200 Subject: [PATCH] add target webapp --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4d21c4a68..9f5d5161c 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,13 @@ webdav: (cd tmp; tar --exclude=.svn -czvf ../seeddms-webdav-$(VERSION).tar.gz seeddms-webdav-$(VERSION)) rm -rf tmp +webapp: + mkdir -p tmp/seeddms-webapp-$(VERSION) + cp -a restapi webapp tmp/seeddms-webapp-$(VERSION) + (cd tmp; tar --exclude=.svn -czvf ../seeddms-webapp-$(VERSION).tar.gz seeddms-webapp-$(VERSION)) + rm -rf tmp + doc: phpdoc -d SeedDMS_Core --ignore 'getusers.php,getfoldertree.php,config.php,reverselookup.php' -t html -.PHONY: webdav +.PHONY: webdav webapp