implemented arena allocator
This commit is contained in:
parent
1f594fbed7
commit
1dd1049bba
4 changed files with 92 additions and 12 deletions
11
makefile
11
makefile
|
|
@ -2,13 +2,18 @@
|
|||
|
||||
include config.mk
|
||||
|
||||
SRC:=topaz.c linear.c
|
||||
SRC:=\
|
||||
topaz.c\
|
||||
linear.c\
|
||||
core/arena.c
|
||||
|
||||
ifeq (${BACKEND},gl)
|
||||
SRC += gl/gl.c gl/platform.c
|
||||
SRC += gl/gl.c\
|
||||
gl/platform.c
|
||||
endif
|
||||
ifeq (${BACKEND},vk)
|
||||
SRC += vk/platform.c
|
||||
SRC += vk/platform.c\
|
||||
vk/renderer.c
|
||||
endif
|
||||
|
||||
OBJ:=${SRC:.c=.o}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue