Wrote value, chunk, memory sections, tested value

chunk and memory remain untested for now
This commit is contained in:
2024-08-13 23:42:14 +10:00
parent 190294e5d9
commit e6ad46f1ff
11 changed files with 204 additions and 10 deletions

View File

@@ -1,14 +1,14 @@
#compiler settings
CFLAGS+=-std=c17 -pedantic -Werror
LIBS=-lm
#directories
export TOY_SOURCEDIR=source
export TOY_OUTDIR=out
export TOY_OBJDIR=obj
#compiler settings
CFLAGS+=-std=c17 -pedantic -Werror
LIBS=-lm
#file names
TOY_SOURCEFILES=$(wildcard $(TOY_SOURCEDIR)/*.c)
export TOY_SOURCEFILES=$(wildcard $(TOY_SOURCEDIR)/*.c)
#targets
all: clean tests