liballoc-c

C generic allocator interface
git clone https://git.sinitax.com/sinitax/liballoc-c
Log | Files | Refs | LICENSE | sfeed.txt

commit db114713e3958e350da181c8894ccf330320f66b
parent 52903c46d996b927ff304bae66c522d317a218f3
Author: Louis Burda <quent.burda@gmail.com>
Date:   Mon, 15 May 2023 16:31:25 +0200

Update build.jst to new syntax

Diffstat:
Mbuild.jst | 19++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/build.jst b/build.jst @@ -20,15 +20,20 @@ target build mkdir target build/liballoc.a - # TODO add include dep - liba src/allocator.c + liba src/allocator.c | include/allocator.h build target build/liballoc.so - # TODO add include dep - libso src/allocator.c + libso src/allocator.c | include/allocator.h build target build/test - cc src/test.c build/liballoc.a + cc src/test.c build/liballoc.a | build + +command clean + rm -rf build + +command cleanall + just clean + +command all + just build/liballoc.a build/liballoc.so build/test -target all - file build build/liballoc.a build/liballoc.so build/test