Updated Makefile

BUILD_NAME is part of OBJ construction
This commit is contained in:
Ethan Smith-Coss 2024-09-11 14:34:27 +01:00
parent 173d8964c0
commit 5ddd9c978d
Signed by: TheOnePath
GPG Key ID: 1D351CCC6D01F32B

View File

@ -41,8 +41,8 @@ endif
# Binary name for executable to compile # Binary name for executable to compile
BINARY_NAME = demo BINARY_NAME = demo
# Source list files # Source list files
SRC = kernels solve gp linalg matio demo SRC = kernels solve gp linalg matio
OBJ = $(patsubst %,$(OBJECT_DIR)/%.o,$(SRC)) OBJ = $(patsubst %,$(OBJECT_DIR)/%.o,$(SRC) $(BINARY_NAME))