aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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
+