From 2855b64f0395c4231f4f820313a779600657e555 Mon Sep 17 00:00:00 2001 From: thorium1256 Date: Mon, 30 Jun 2025 12:25:36 +0300 Subject: [PATCH] fix for incorrect phony rule declaration --- Makefile.unix | 2 +- Makefile.win | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.unix b/Makefile.unix index 8f7f5c6..c7895da 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -39,7 +39,7 @@ $(shell mkdir -p $(RLS_DIR)) $(shell mkdir -p $(BUILD_DIR)) # phony rules -.PHONY := all debug release clean install uninstall +.PHONY = all debug release clean install uninstall all: release diff --git a/Makefile.win b/Makefile.win index ff0fbbf..b0d2965 100644 --- a/Makefile.win +++ b/Makefile.win @@ -37,7 +37,7 @@ $(shell if not exist $(RLS_DIR) mkdir $(RLS_DIR)) $(shell if not exist $(BUILD_DIR) mkdir $(BUILD_DIR)) # phony rules -.PHONY := all debug release clean libraries_debug libraries_release both +.PHONY = all debug release clean libraries_debug libraries_release both all: release