git://scientific.zcu.cz
/
now.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5aab729
)
Add explicit fetch and clean targets.
author
František Dvořák
<valtri@civ.zcu.cz>
Tue, 7 Jun 2016 16:04:01 +0000
(18:04 +0200)
committer
František Dvořák
<valtri@civ.zcu.cz>
Tue, 7 Jun 2016 16:04:01 +0000
(18:04 +0200)
Makefile
patch
|
blob
|
blame
|
history
diff --git
a/Makefile
b/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