From 4e18b214065aac2c70cdbc4a10a3dfcb62880880 Mon Sep 17 00:00:00 2001 From: asus Date: Sat, 10 Feb 2024 02:24:21 +0100 Subject: [PATCH] added more rules in parent makefile --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 520358f..b79339b 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,15 @@ erase: new: $(MAKE) $@ -C $(WP_DOCKER_D) +down: + $(MAKE) $@ -C $(WP_DOCKER_D) -.PHONY : all fclean re erase new +up: + $(MAKE) $@ -C $(WP_DOCKER_D) + +build: + $(MAKE) $@ -C $(WP_DOCKER_D) + + +.PHONY : all fclean re erase new down up build