summaryrefslogtreecommitdiffstats
path: root/lib/liballoc
diff options
context:
space:
mode:
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