aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-02-19 16:08:54 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-02-19 16:08:54 -0300
commitc18edff577266df58b8bcd87f9dda4508fa7ffd8 (patch)
tree4a6bda3c8cb3af1cfd7cf2344a884a33d040faff /Makefile
parent6bb399d33bacde6d13a00f4cdd5d7ad409120c75 (diff)
downloadpuppet-bootstrap-c18edff577266df58b8bcd87f9dda4508fa7ffd8.tar.gz
puppet-bootstrap-c18edff577266df58b8bcd87f9dda4508fa7ffd8.tar.bz2
Makefile: install target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 9 insertions, 5 deletions
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
+