From 2c2caaab6831d667d781459e00477e37df852dd9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Tue, 7 Jun 2016 18:04:01 +0200 Subject: [PATCH] Add explicit fetch and clean targets. --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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 -- 1.8.2.3