summaryrefslogtreecommitdiff
path: root/MK
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-03-25 17:42:33 -0400
committerFreya Murphy <freya@freyacat.org>2025-03-25 17:42:33 -0400
commit9b26a288ae243b9497316e7c94dbc7914a09b14f (patch)
tree2f23696a2bf98fa3271bf4907f452b00ded70d27 /MK
parentconvert build system to zig (diff)
downloadcomus-9b26a288ae243b9497316e7c94dbc7914a09b14f.tar.gz
comus-9b26a288ae243b9497316e7c94dbc7914a09b14f.tar.bz2
comus-9b26a288ae243b9497316e7c94dbc7914a09b14f.zip
remove legacy bullshit
Diffstat (limited to 'MK')
-rwxr-xr-xMK36
1 files changed, 0 insertions, 36 deletions
diff --git a/MK b/MK
deleted file mode 100755
index 347f885..0000000
--- a/MK
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-#
-# Run 'make', saving all output into a file named LOG
-#
-# usage:
-# MK [args] - prints timestamps and status
-# MKV [args] - echoes and saves 'make' output
-#
-
-# remember this so we know what to do
-name="`basename $0`"
-
-# starting timestamp
-time1="`date`"
-
-if [ "$name" = "MK" ]
-then
- # run make, save output, check status
- echo -n + make $* '> LOG 2>&1 ... '
- if make $* > LOG 2>&1
- then
- echo done
- else
- echo check LOG for build errors
- fi
-else
- # just do the make and save a copy of the output
- echo + make $* '2>&1 | tee LOG'
- make $* 2>&1 | tee LOG
-fi
-
-# ending timestamp
-time2="`date`"
-
-echo Start: $time1
-echo "End: " $time2