Skip to content

Commit

Permalink
vagrant rework fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Sep 27, 2024
1 parent cfdcbe8 commit 89a199f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions cmake/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ clean_web: $(addprefix clean_web_, $(WEB_STAGES))
#############
## VAGRANT ##
#############
VMS := \
VAGRANT_VMS := \
freebsd \
netbsd \
openbsd
Expand Down Expand Up @@ -751,6 +751,12 @@ $$(clean_$1_targets): clean_$1_%:
-rm -rf vagrant/$1/$$*/.vagrant
endef

$(foreach vms,$(VAGRANT_VMS),$(eval $(call make-vagrant-target,$(vms))))

## MERGE ##
.PHONY: clean_vagrant
clean_vagrant: $(addprefix clean_, $(VAGRANT_VMS))

##########
## GLOP ##
##########
Expand Down Expand Up @@ -788,7 +794,7 @@ clean_glop: $(addprefix clean_glop_, $(STAGES))
## CLEAN ##
###########
.PHONY: clean
clean: clean_all clean_platforms clean_toolchains clean_web clean_freebsd clean_glop
clean: clean_all clean_platforms clean_toolchains clean_web clean_vagrant clean_glop
docker container prune -f
docker image prune -f
-rmdir cache
Expand Down

0 comments on commit 89a199f

Please sign in to comment.