Files
2023_WEBSITE_jipf/Makefile
asus 45204fc39a - error with wp-admin
- changes in makefiles
2024-02-04 14:17:25 +01:00

37 lines
967 B
Makefile

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# . name = value \ . += append to a variable #
# VARIABLES . value . != set result of command #
# . name is case sensitive . ?= set if not already set #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
WP_DOCKER = ./wordpress_docker
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
# . target: prerequisites . $@ : target #
# RULES . recipe . $< : 1st prerequisite #
# . recipe . $^ : all prerequisites #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
all:
$(MAKE) $@ -C $(WP_DOCKER)
fclean:
$(MAKE) $@ -C $(WP_DOCKER)
re:
$(MAKE) $@ -C $(WP_DOCKER)
erase:
$(MAKE) $@ -C $(WP_DOCKER)
new:
$(MAKE) $@ -C $(WP_DOCKER)
.PHONY : all fclean re erase new