Helper Makefile.
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 7 Jun 2016 13:39:21 +0000 (15:39 +0200)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 7 Jun 2016 14:02:40 +0000 (16:02 +0200)
Makefile [new file with mode: 0644]
README.md

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..b6be076
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+all: run
+
+run: Gemfile.lock
+       bundle exec rackup
+
+check:
+       :
+
+Gemfile.lock:
+       bundle install
+
+.PHONY: all run check
index ae0b615..70d5fdf 100644 (file)
--- a/README.md
+++ b/README.md
@@ -7,3 +7,10 @@ This is the component to extend OpenNebula network orchestration capabilities.
 ```
 rackup
 ```
+
+## Development
+```
+make run
+```
+
+It calls `rackup` through bundler.