From 5ddd9c978dfaa952e383d23f3317355450bb7f0a Mon Sep 17 00:00:00 2001 From: TheOnePath Date: Wed, 11 Sep 2024 14:34:27 +0100 Subject: [PATCH] Updated Makefile BUILD_NAME is part of OBJ construction --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2acb96f..2185a6a 100644 --- a/Makefile +++ b/Makefile @@ -41,8 +41,8 @@ endif # Binary name for executable to compile BINARY_NAME = demo # Source list files -SRC = kernels solve gp linalg matio demo -OBJ = $(patsubst %,$(OBJECT_DIR)/%.o,$(SRC)) +SRC = kernels solve gp linalg matio +OBJ = $(patsubst %,$(OBJECT_DIR)/%.o,$(SRC) $(BINARY_NAME))