fix for incorrect phony rule declaration

This commit is contained in:
thorium1256 2025-06-30 12:25:36 +03:00
parent 9c45259962
commit 2855b64f03
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ $(shell mkdir -p $(RLS_DIR))
$(shell mkdir -p $(BUILD_DIR)) $(shell mkdir -p $(BUILD_DIR))
# phony rules # phony rules
.PHONY := all debug release clean install uninstall .PHONY = all debug release clean install uninstall
all: release all: release

View File

@ -37,7 +37,7 @@ $(shell if not exist $(RLS_DIR) mkdir $(RLS_DIR))
$(shell if not exist $(BUILD_DIR) mkdir $(BUILD_DIR)) $(shell if not exist $(BUILD_DIR) mkdir $(BUILD_DIR))
# phony rules # phony rules
.PHONY := all debug release clean libraries_debug libraries_release both .PHONY = all debug release clean libraries_debug libraries_release both
all: release all: release