Files
allocators/chinookfile
T

46 lines
883 B
Plaintext
Raw Normal View History

2026-08-07 18:33:50 -05:00
name: allocators
gpid: malunal
semv: 1.0.0
requires:
- remote: git@git.erasit.com:malunal/config
branch: v1.0.2
- remote: git@git.erasit.com:malunal/microtest
branch: v1.0.0
2026-08-07 18:33:50 -05:00
- remote: git@git.erasit.com:malunal/types
branch: v1.0.0
targets:
- name: malunal.allocators
type: archive
deps:
- malunal.config
- malunal.types
srcs:
2026-08-12 19:47:59 -05:00
- ./sources/libc.c
- ./sources/linux.c
- ./sources/win32.c
- ./sources/linear.c
2026-08-07 18:33:50 -05:00
- ./sources/arena.c
- ./sources/stack.c
- ./sources/pool.c
- ./sources/allocator.c
2026-08-07 18:33:50 -05:00
tests:
- name: malunal.allocators.allinone
2026-08-07 18:33:50 -05:00
type: program
deps:
- malunal.allocators
- malunal.microtest
2026-08-07 18:33:50 -05:00
srcs:
- ./tests/libc_allocator.c
- ./tests/platform_allocator.c
- ./tests/linear_allocator.c
2026-08-07 18:33:50 -05:00
- ./tests/arena_allocator.c
- ./tests/stack_allocator.c
- ./tests/pool_allocator.c
- ./tests/allocators.c
2026-08-07 18:33:50 -05:00
exports:
- malunal.allocators