summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-05-07 11:09:38 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-05-07 11:09:44 +0200
commit2b211334183d3ae61e42f3f6c4ba6d90b06ca733 (patch)
tree32cb677f088b0806c04cbf3153853fbe35da1e96 /Makefile
parentb4bf3d761a5ec6f5a9286de2b84cafa675195f1d (diff)
changelog adjustements
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index edf0979f5..17d933c00 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# ownCloud - News
+# ownCloud - App Framework
#
# @author Bernhard Posselt
# @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
@@ -20,7 +20,8 @@
# release for the app store and running php unittests which require core
build_directory=build/
-package_name=$(build_directory)news
+app_name=news
+package_name=$(build_directory)$(app_name)
all: dist
@@ -31,7 +32,7 @@ clean:
dist: clean
mkdir -p $(build_directory)
- git archive HEAD --format=zip --prefix=news/ > $(package_name).zip
+ git archive HEAD --format=zip --prefix=$(app_name)/ > $(package_name).zip
test: unit integration acceptance