diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-19 16:08:54 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-19 16:08:54 -0300 |
commit | c18edff577266df58b8bcd87f9dda4508fa7ffd8 (patch) | |
tree | 4a6bda3c8cb3af1cfd7cf2344a884a33d040faff | |
parent | 6bb399d33bacde6d13a00f4cdd5d7ad409120c75 (diff) | |
download | puppet-bootstrap-c18edff577266df58b8bcd87f9dda4508fa7ffd8.tar.gz puppet-bootstrap-c18edff577266df58b8bcd87f9dda4508fa7ffd8.tar.bz2 |
Makefile: install target
-rw-r--r-- | Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -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 + |