From f58a7e80ef503af58d8f7bfdc3d64e10717f9bf5 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 26 Jul 2024 02:59:48 +0100 Subject: Add numerics to build system Successfully compiles and runs! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d3bbe54..ba015d3 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ endif SRC=src DIST=build -CODE=$(addprefix $(SRC)/, ) # add source files here +CODE=$(addprefix $(SRC)/, numerics.cpp) # add source files here OBJECTS=$(CODE:$(SRC)/%.cpp=$(DIST)/%.o) DEPDIR:=$(DIST)/dependencies DEPS:=$(CODE:$(SRC)/%.cpp=$(DEPDIR):%.d) $(DEPDIR)/main.d -- cgit v1.2.3-13-gbd6f