diff --git a/Makefile b/Makefile index 435eb43..6316d19 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,18 @@ WP_DOCKER = ./wordpress_docker all: $(MAKE) $@ -C $(WP_DOCKER) +fclean: + $(MAKE) $@ -C $(WP_DOCKER) -.PHONY : all +re: + $(MAKE) $@ -C $(WP_DOCKER) + +erase: + $(MAKE) $@ -C $(WP_DOCKER) + +new: + $(MAKE) $@ -C $(WP_DOCKER) + + +.PHONY : all fclean re erase new