first implementation, badly, of allocator

This commit is contained in:
hugogogo
2022-06-01 15:41:14 +02:00
parent 0e51cc655c
commit 99f67b808c
5 changed files with 145 additions and 2 deletions

View File

@@ -19,11 +19,13 @@ LIBS =
INCLUDES = -I$(D_HEADERS)
D_SRCS = srcs
SRCS = main.cpp
SRCS = main.cpp \
ftvector.cpp
D_HEADERS = headers
HEADERS = colors.h \
tests.h
tests.h \
ftvector.hpp
D_OBJS = builds
OBJS = $(SRCS:%.$(EXT)=$(D_OBJS)/%.o)