From: Silvio Rhatto Date: Wed, 19 Feb 2014 19:08:54 +0000 (-0300) Subject: Makefile: install target X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=c18edff577266df58b8bcd87f9dda4508fa7ffd8;p=puppet-bootstrap.git Makefile: install target --- diff --git a/Makefile b/Makefile index fcd6119..9b0f1f4 100644 --- a/Makefile +++ b/Makefile @@ -16,9 +16,11 @@ REPO = git://git.sarava.org/puppet-bootstrap.git -clean: - rm -r modules - git checkout modules +all: clean + make modules + +install: clean + make remote modules modules: mr up @@ -26,5 +28,7 @@ modules: remote: git remote add bootstrap $(REPO) -all: clean - make remote modules +clean: + rm -r modules + git checkout modules +