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 36 vagrant box add $(BOX) $^
37 37  
38 38 clean:
  39 + $(RM) $(BOX).box
  40 +
  41 +fullclean: clean
39 42 sudo $(RM) -r rootfs
40 43 sudo $(RM) rootfs.tar.gz
41 44 $(RM) .$(BOX)-base
42   - $(RM) $(BOX).box
43 45 $(RM) lxc.conf
44 46 $(RM) metadata.json
45 47 sudo lxc-destroy -n $(BOX)-base
... ...