From fb8ba7e6d1198796ef8552594b12d5a621b93ca2 Mon Sep 17 00:00:00 2001 From: "Max R. Carrara" Date: Sat, 16 Aug 2025 16:11:43 +0200 Subject: [PATCH] make: fix PHONY target declarations Signed-off-by: Max R. Carrara --- wien_talks/Makefile | 2 +- wien_talks/wien_talks_server/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wien_talks/Makefile b/wien_talks/Makefile index a92bbf1..828334e 100644 --- a/wien_talks/Makefile +++ b/wien_talks/Makefile @@ -1,7 +1,7 @@ include defines.mk -.PHONY := local +.PHONY: local local: $(MAKE) -C wien_talks_server local diff --git a/wien_talks/wien_talks_server/Makefile b/wien_talks/wien_talks_server/Makefile index 70f2ff5..ec6f31d 100644 --- a/wien_talks/wien_talks_server/Makefile +++ b/wien_talks/wien_talks_server/Makefile @@ -9,7 +9,7 @@ COMPOSE_PROJECT := $(shell basename $(shell pwd)) .env: .env.template cp -a .env.template .env -.PHONY := local local-env local-stop local-down local-clean +.PHONY: local local-env local-stop local-down local-clean local: .env docker compose -f $(COMPOSE_FILE_LOCAL) up -d