From 4c9335e73c3aebd31239ec370394bacd097d4a32 Mon Sep 17 00:00:00 2001 From: thorium1256 Date: Sun, 22 Jun 2025 18:16:32 +0300 Subject: [PATCH] makefile insanity --- Makefile.unix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.unix b/Makefile.unix index 7a4bf2d..867c966 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -15,9 +15,9 @@ SRC_DIR := src BIN_DIR := bin DBG_DIR := $(BIN_DIR)/debug RLS_DIR := $(BIN_DIR)/release -DBG_EXEC := $(BIN_DIR)/debug/debug -RLS_EXEC := $(BIN_DIR)/release/release -RLS_STRIPPED_EXEC := $(BIN_DIR)/release_stripped +DBG_EXEC := $(DBG_DIR)/debug +RLS_EXEC := $(RLS_DIR)/release +RLS_STRIPPED_EXEC := $(RLS_DIR)/release_stripped # sources and objects SRCS := $(wildcard $(SRC_DIR)/*.cpp)