diff options
| author | Louis Burda <contact@sinitax.com> | 2025-06-19 03:38:41 +0200 |
|---|---|---|
| committer | Louis Burda <contact@sinitax.com> | 2025-06-19 03:38:41 +0200 |
| commit | 455ea29f421ec916bf248de8563363c88824cbee (patch) | |
| tree | 3b55ff29564b0985f8657eab6895eab37a39e788 /lib/liballoc | |
| parent | eff6ad090ed53cf97b11393fc3ab45abe8f67214 (diff) | |
| download | libhmap-c-455ea29f421ec916bf248de8563363c88824cbee.tar.gz libhmap-c-455ea29f421ec916bf248de8563363c88824cbee.zip | |
Diffstat (limited to 'lib/liballoc')
| -rw-r--r-- | lib/liballoc/.gitignore | 2 | ||||
| -rw-r--r-- | lib/liballoc/build.rmk.tmpl (renamed from lib/liballoc/build.jst.tmpl) | 4 | ||||
| -rwxr-xr-x | lib/liballoc/configure | 4 |
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 |
