aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-07-26 02:59:48 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-07-26 02:59:48 +0100
commitf58a7e80ef503af58d8f7bfdc3d64e10717f9bf5 (patch)
treee6bf1c1ce3f4c40c80340fa172476e080998a766
parent6a6ed5a54567df38dcad10243b7088a946d5e31b (diff)
downloadcw_tree-f58a7e80ef503af58d8f7bfdc3d64e10717f9bf5.tar.gz
cw_tree-f58a7e80ef503af58d8f7bfdc3d64e10717f9bf5.tar.bz2
cw_tree-f58a7e80ef503af58d8f7bfdc3d64e10717f9bf5.zip
Add numerics to build system
Successfully compiles and runs!
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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