From: František Dvořák Date: Tue, 7 Jun 2016 16:04:01 +0000 (+0200) Subject: Add explicit fetch and clean targets. X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=2c2caaab6831d667d781459e00477e37df852dd9;p=now.git Add explicit fetch and clean targets. --- diff --git a/Makefile b/Makefile index b6be076..a5caece 100644 --- 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