|
|
@@ -34,31 +34,6 @@ RESTART_NGINX := sudo rc-service nginx restart
|
|
|
|
container_image_name = $(REGISTRY_DOMAIN)/$(REGISTRY_USER)/joeac.net-$(module)
|
|
|
|
container_image_name = $(REGISTRY_DOMAIN)/$(REGISTRY_USER)/joeac.net-$(module)
|
|
|
|
nginx_module_target = $(if $(SUBDOMAIN_$(module)),/etc/nginx/http.d/$(SUBDOMAIN_$(module)).joeac.net.conf)
|
|
|
|
nginx_module_target = $(if $(SUBDOMAIN_$(module)),/etc/nginx/http.d/$(SUBDOMAIN_$(module)).joeac.net.conf)
|
|
|
|
dyndns_module_target = $(if $(SUBDOMAIN_$(module)),/etc/periodic/daily/dyndns-$(SUBDOMAIN_$(module)).joeac.net)
|
|
|
|
dyndns_module_target = $(if $(SUBDOMAIN_$(module)),/etc/periodic/daily/dyndns-$(SUBDOMAIN_$(module)).joeac.net)
|
|
|
|
openrc_module_target = $(if $(filter $(COMPOSE_SERVICES),$(module)),~/.config/rc/init.d/joeac.net.$(module))
|
|
|
|
|
|
|
|
install_submake_file = $(shell [ -f "$(module)/install.mk" ] && echo "$(module)/install.mk")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
define build_module_rule =
|
|
|
|
|
|
|
|
.PHONY: build_$(module)
|
|
|
|
|
|
|
|
build_$(module): make_$(module) $(module).Dockerfile
|
|
|
|
|
|
|
|
podman-compose build $(module)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
define push_module_rule =
|
|
|
|
|
|
|
|
.PHONY: push_$(module)
|
|
|
|
|
|
|
|
push_$(module): login_registry build_$(module)
|
|
|
|
|
|
|
|
podman push $(container_image_name)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
define make_module_rule =
|
|
|
|
|
|
|
|
.PHONY: make_$(module)
|
|
|
|
|
|
|
|
make_$(module): $(module)/.env
|
|
|
|
|
|
|
|
$(MAKE) --directory=$(module)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
define module_env_rule =
|
|
|
|
|
|
|
|
$(module)/.env: .env
|
|
|
|
|
|
|
|
cp .env $(module)/.env
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
define install_module_rule =
|
|
|
|
define install_module_rule =
|
|
|
|
.PHONY: install_$(module)
|
|
|
|
.PHONY: install_$(module)
|
|
|
@@ -89,6 +64,13 @@ uninstall_$(module):
|
|
|
|
$(MAKE) --makefile=$(notdir (install_submake_file)) --directory $(dir $(install_submake_file)) uninstall
|
|
|
|
$(MAKE) --makefile=$(notdir (install_submake_file)) --directory $(dir $(install_submake_file)) uninstall
|
|
|
|
)
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
endef
|
|
|
|
|
|
|
|
= $(if $(filter $(COMPOSE_SERVICES),$(module)),~/.config/rc/init.d/joeac.net.$(module))
|
|
|
|
|
|
|
|
install_submake_file = $(shell [ -f "$(module)/install.mk" ] && echo "$(module)/install.mk")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
define module_env_rule =
|
|
|
|
|
|
|
|
$(module)/.env: .env
|
|
|
|
|
|
|
|
cp .env $(module)/.env
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#########
|
|
|
|
#########
|
|
|
@@ -106,15 +88,8 @@ usage:
|
|
|
|
echo " make uninstall"
|
|
|
|
echo " make uninstall"
|
|
|
|
$(foreach module,$(MODULES),echo " make uninstall_$(module)")
|
|
|
|
$(foreach module,$(MODULES),echo " make uninstall_$(module)")
|
|
|
|
|
|
|
|
|
|
|
|
$(foreach module,$(COMPOSE_SERVICES),$(eval $(call build_module_rule)))
|
|
|
|
|
|
|
|
$(foreach module,$(COMPOSE_SERVICES),$(eval $(call push_module_rule)))
|
|
|
|
|
|
|
|
$(foreach module,$(MAKE_MODULES),$(eval $(call make_module_rule)))
|
|
|
|
|
|
|
|
$(foreach module,$(MODULES),$(eval $(call module_env_rule)))
|
|
|
|
$(foreach module,$(MODULES),$(eval $(call module_env_rule)))
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: login_registry
|
|
|
|
|
|
|
|
login_registry:
|
|
|
|
|
|
|
|
podman login $(REGISTRY_DOMAIN)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: install
|
|
|
|
.PHONY: install
|
|
|
|
install: $(foreach module,$(MODULES),install_$(module)) install_crontab
|
|
|
|
install: $(foreach module,$(MODULES),install_$(module)) install_crontab
|
|
|
|
|
|
|
|
|
|
|
@@ -128,6 +103,7 @@ $(foreach module,$(MODULES),$(eval $(install_module_rule)))
|
|
|
|
$(foreach module,$(MODULES),$(eval $(reinstall_module_rule)))
|
|
|
|
$(foreach module,$(MODULES),$(eval $(reinstall_module_rule)))
|
|
|
|
$(foreach module,$(MODULES),$(eval $(uninstall_module_rule)))
|
|
|
|
$(foreach module,$(MODULES),$(eval $(uninstall_module_rule)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include container.mk
|
|
|
|
include openrc.mk
|
|
|
|
include openrc.mk
|
|
|
|
include nginx.mk
|
|
|
|
include nginx.mk
|
|
|
|
include crontab.mk
|
|
|
|
include crontab.mk
|
|
|
|