Add explicit fetch and clean targets.
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 7 Jun 2016 16:04:01 +0000 (18:04 +0200)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 7 Jun 2016 16:04:01 +0000 (18:04 +0200)
Makefile

index b6be076..a5caece 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,17 @@
 all: run
 
-run: Gemfile.lock
+run: fetch
        bundle exec rackup
 
 check:
        :
 
+fetch: Gemfile.lock
+
+clean:
+       rm -fv Gemfile.lock
+
 Gemfile.lock:
        bundle install
 
-.PHONY: all run check
+.PHONY: all check clean fetch run