summaryrefslogtreecommitdiffstats
path: root/lib/liballoc
diff options
context:
space:
mode:
authorLouis Burda <contact@sinitax.com>2025-06-19 04:20:39 +0200
committerLouis Burda <contact@sinitax.com>2025-06-19 04:20:39 +0200
commit78a1da06f38e08a6c883f2eb449a66fe038c1294 (patch)
tree6ca190076718ddaa7787fa89ac2c6c8af473f4ef /lib/liballoc
parent13489155c4f392dee8a0e9247df4b3fee91dc6bc (diff)
downloadlibhmd-c-master.tar.gz
libhmd-c-master.zip
Update liballoc to rm%HEADmaster
Diffstat (limited to 'lib/liballoc')
-rw-r--r--lib/liballoc/.gitignore2
-rw-r--r--lib/liballoc/build.rmk.tmpl (renamed from lib/liballoc/build.jst.tmpl)4
-rwxr-xr-xlib/liballoc/configure4
3 files changed, 6 insertions, 4 deletions
diff --git a/lib/liballoc/.gitignore b/lib/liballoc/.gitignore
index ac80ccf..b6a670a 100644
--- a/lib/liballoc/.gitignore
+++ b/lib/liballoc/.gitignore
@@ -1,6 +1,6 @@
compile_commands.json
build
-build.jst
+build.rmk
.cache
vgcore*
.gdb_history
diff --git a/lib/liballoc/build.jst.tmpl b/lib/liballoc/build.rmk.tmpl
index 410749d..32a2bc8 100644
--- a/lib/liballoc/build.jst.tmpl
+++ b/lib/liballoc/build.rmk.tmpl
@@ -43,7 +43,7 @@ command clean
rm -rf build
command cleanall
- just clean
+ rmk clean
command install
install -m755 build/liballoc.a -t "#{DESTDIR}#{PREFIX}#{LIBDIR}"
@@ -56,5 +56,5 @@ command uninstall
rm -f "#{DESTDIR}#{PREFIX}#{INCLDIR}/allocator.h"
command all
- just build/liballoc.a build/liballoc.so build/test
+ rmk build/liballoc.a build/liballoc.so build/test
diff --git a/lib/liballoc/configure b/lib/liballoc/configure
index 9b3f0eb..16d5220 100755
--- a/lib/liballoc/configure
+++ b/lib/liballoc/configure
@@ -1,3 +1,5 @@
#!/bin/sh
-tmpl "$@" build.jst.tmpl > build.jst
+set -ex
+
+tmpl "$@" build.rmk.tmpl > build.rmk