Added math library

This commit is contained in:
Add00
2023-07-31 23:31:12 -04:00
parent 81fe278c96
commit e3e9ca7ece
9 changed files with 642 additions and 272 deletions

View File

@@ -2,7 +2,7 @@ CC=gcc
IDIR +=. ../source ../repl
CFLAGS +=$(addprefix -I,$(IDIR)) -g -Wall -W -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable
LIBS +=
LIBS +=-lm
ODIR = obj
TARGETS = $(wildcard ../source/*.c) $(wildcard ../repl/lib_*.c) ../repl/repl_tools.c ../repl/drive_system.c
TESTS = $(wildcard test_*.c)