centralized malloc system

This commit is contained in:
hugogogo
2022-03-24 21:53:03 +01:00
parent f37f2891a4
commit 2e6374b4d9
10 changed files with 261 additions and 16 deletions

View File

@@ -14,7 +14,7 @@ D_SRCS = srcs \
srcs/init \
srcs/hook \
srcs/draw \
srcs/free
srcs/mem
SRCS = cube3d.c \
\
@@ -23,14 +23,17 @@ SRCS = cube3d.c \
\
keyhook.c \
key_do_action.c \
key_is_action_1.c
key_is_action_1.c \
\
free_exit.c
# headers
D_HEADERS = headers
HEADERS = cube3d.h \
cube3d_proto.h \
cube3d_macro.h \
cube3d_struct.h
cube3d_struct.h \
colors.h
INCLUDES = -I$(D_HEADERS) -I$(D_LFT) -I$(D_LMLX)