Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Add Makefile to help with building.
Browse files Browse the repository at this point in the history
  • Loading branch information
fnichol committed Aug 24, 2014
1 parent d3d61cc commit fb955a3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
build: boot2docker-vagrant.iso
time (packer build -parallel=false template.json)

prepare: clean boot2docker-vagrant.iso

boot2docker-vagrant.iso:
vagrant up
vagrant ssh -c 'cd /vagrant && sudo ./build-iso.sh'
vagrant destroy --force

clean:
rm -rf *.iso *.box

.PHONY: clean prepare build

0 comments on commit fb955a3

Please sign in to comment.