diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-07-26 02:59:48 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-07-26 02:59:48 +0100 |
commit | f58a7e80ef503af58d8f7bfdc3d64e10717f9bf5 (patch) | |
tree | e6bf1c1ce3f4c40c80340fa172476e080998a766 /Makefile | |
parent | 6a6ed5a54567df38dcad10243b7088a946d5e31b (diff) | |
download | cw_tree-f58a7e80ef503af58d8f7bfdc3d64e10717f9bf5.tar.gz cw_tree-f58a7e80ef503af58d8f7bfdc3d64e10717f9bf5.tar.bz2 cw_tree-f58a7e80ef503af58d8f7bfdc3d64e10717f9bf5.zip |
Add numerics to build system
Successfully compiles and runs!
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |