From c7c8a96a572dd04c3aff44284c4c46da04deaa37 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Wed, 1 Jul 2026 18:31:34 +0100 Subject: [PATCH] moves helper makefiles into make/ dir --- Makefile | 12 ++++++------ container.mk => make/container.mk | 0 crontab.mk => make/crontab.mk | 0 dyndns.mk => make/dyndns.mk | 0 nginx.mk => make/nginx.mk | 0 openrc.mk => make/openrc.mk | 0 vars.mk => make/vars.mk | 0 7 files changed, 6 insertions(+), 6 deletions(-) rename container.mk => make/container.mk (100%) rename crontab.mk => make/crontab.mk (100%) rename dyndns.mk => make/dyndns.mk (100%) rename nginx.mk => make/nginx.mk (100%) rename openrc.mk => make/openrc.mk (100%) rename vars.mk => make/vars.mk (100%) diff --git a/Makefile b/Makefile index 0b00008..2da0faa 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -include vars.mk +include make/vars.mk ############# @@ -67,11 +67,11 @@ $(foreach module,$(MODULES),$(eval $(install_module_rule))) $(foreach module,$(MODULES),$(eval $(reinstall_module_rule))) $(foreach module,$(MODULES),$(eval $(uninstall_module_rule))) -include container.mk -include openrc.mk -include nginx.mk -include crontab.mk -include dyndns.mk +include make/container.mk +include make/openrc.mk +include make/nginx.mk +include make/crontab.mk +include make/dyndns.mk .PHONY: clean clean: diff --git a/container.mk b/make/container.mk similarity index 100% rename from container.mk rename to make/container.mk diff --git a/crontab.mk b/make/crontab.mk similarity index 100% rename from crontab.mk rename to make/crontab.mk diff --git a/dyndns.mk b/make/dyndns.mk similarity index 100% rename from dyndns.mk rename to make/dyndns.mk diff --git a/nginx.mk b/make/nginx.mk similarity index 100% rename from nginx.mk rename to make/nginx.mk diff --git a/openrc.mk b/make/openrc.mk similarity index 100% rename from openrc.mk rename to make/openrc.mk diff --git a/vars.mk b/make/vars.mk similarity index 100% rename from vars.mk rename to make/vars.mk