Addition with floats is now entirely possible.

This commit is contained in:
2024-11-30 11:15:18 -05:00
parent 8e5b39a6e4
commit 85e17ede84
4 changed files with 48 additions and 11 deletions

View File

@@ -14,7 +14,7 @@ TEST_OBJ_DIR = $(TEST_BUILD_DIR)/obj
CC = clang
LINK = clang
CFLAGS = -Wall -DDBG -ggdb
LDFLAGS =
LDFLAGS = -lm
SRC_FILES = $(wildcard $(SRC_DIR)/*.c)
OBJ_FILES = $(patsubst $(SRC_DIR)/%.c, $(OBJ_DIR)/%.o, $(SRC_FILES))