aboutsummaryrefslogtreecommitdiff
path: root/mach
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2023-10-08 19:50:00 +0300
committeraqua <aqua@iserlohn-fortress.net>2023-11-27 21:02:22 +0200
commitfc13fb2ba5993d06d9d6ae5e80bc337aebbdc119 (patch)
tree9607ab4d5f1d4069d4f761a0b25eada36088bd6b /mach
parentrules.mk: make include paths absolute (diff)
downloadkernel-fc13fb2ba5993d06d9d6ae5e80bc337aebbdc119.tar.xz
Use meson build system
Diffstat (limited to 'mach')
-rwxr-xr-xmach22
1 files changed, 0 insertions, 22 deletions
diff --git a/mach b/mach
deleted file mode 100755
index fbc10d7..0000000
--- a/mach
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-# =====================================================================
-# filename: mach
-# description: make wrapper used to run mk files
-# To use, add the relative path to this script as a
-# shebang in mk and make it executable.
-# spdx-license-identifier: ISC
-# =====================================================================
-
-if [[ $1 != "./mk" ]]
-then
- echo "Usage: $0 ./mk; argument passed: $1"
- exit 1
-fi
-
-# remove ./mk from args
-ARGS=${@:2}
-
-# root.mk should be next to this script
-ROOT=`dirname $0`
-
-make --silent -f ${ROOT}/root.mk -C ${PWD} ${ARGS}