summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-05-07 17:56:07 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-05-07 17:56:07 +0200
commit8ee79c729abe0f5121732f9cdcbc71ac7f864c16 (patch)
tree6d33ca22f0f7d59758c3acc5bea0ba97d5780546
parent6fa3308b9e6955ed12af4e66845b4a7f1af7ca60 (diff)
added instructions for building and packaging the app
-rw-r--r--Makefile4
-rw-r--r--README.rst12
2 files changed, 14 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 93ee815d7..14cf6b3fb 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,9 @@
build_directory=build/
package_name=$(build_directory)$(app_name)
-all: dist
+all:
+ # compile the coffeescript
+ cd js; make
clean:
diff --git a/README.rst b/README.rst
index f5690b2e0..96ec30694 100644
--- a/README.rst
+++ b/README.rst
@@ -132,6 +132,16 @@ in the **js/** directory
feedUpdateInterval: 1000*60*3 # miliseconds
+Building the package
+--------------------
+To build the app simply run::
+
+ make
+
+Then build the package with
+
+ make dist
+
Running tests
-------------
@@ -158,4 +168,4 @@ Integration tests::
Acceptance tests::
- make acceptance \ No newline at end of file
+ make acceptance