Commit 1dd62c4d1f70eba832f2e7035bc47278a86fc2bc

Authored by Antonio Terceiro
1 parent f01c7fef

turn `make clean` into a light cleanup

`make fullclean` will wipe out all generated content
Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
utils/centos6-vagrant-lxc/Makefile
@@ -36,10 +36,12 @@ install: $(BOX).box @@ -36,10 +36,12 @@ install: $(BOX).box
36 vagrant box add $(BOX) $^ 36 vagrant box add $(BOX) $^
37 37
38 clean: 38 clean:
  39 + $(RM) $(BOX).box
  40 +
  41 +fullclean: clean
39 sudo $(RM) -r rootfs 42 sudo $(RM) -r rootfs
40 sudo $(RM) rootfs.tar.gz 43 sudo $(RM) rootfs.tar.gz
41 $(RM) .$(BOX)-base 44 $(RM) .$(BOX)-base
42 - $(RM) $(BOX).box  
43 $(RM) lxc.conf 45 $(RM) lxc.conf
44 $(RM) metadata.json 46 $(RM) metadata.json
45 sudo lxc-destroy -n $(BOX)-base 47 sudo lxc-destroy -n $(BOX)-base