makefile insanity

This commit is contained in:
thorium1256 2025-06-22 18:16:32 +03:00
parent cd4004dc23
commit 4c9335e73c

View File

@ -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)