aboutsummaryrefslogtreecommitdiff
path: root/dm
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2021-12-13 16:58:50 -0500
committerRyan Kavanagh <rak@rak.ac>2021-12-13 16:58:50 -0500
commit439c77b9e72c9088a343d7a81e893cf3f5b2211e (patch)
tree079da5a71e1882f5ef48bb41736d65a6fd857f70 /dm
parentset catgirl config files to templates (diff)
drop old stuff
Diffstat (limited to '')
-rwxr-xr-xdm27
1 files changed, 0 insertions, 27 deletions
diff --git a/dm b/dm
deleted file mode 100755
index 2a085fd..0000000
--- a/dm
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-set -e
-
-git config core.hooksPath .githooks
-
-if [ ! -f SUBSTS.local ]; then
- echo "Please create the file SUBSTS.local first."
- exit 1;
-fi
-
-chmod 600 SUBSTS.local
-
-case `uname` in
- Linux|Darwin)
- make --version | grep "GNU Make" > /dev/null 2>&1 || { echo "Please install GNU Make"; exit 1; }
- MAKE=`command -v make`
- ;;
- *)
- command -v gmake > /dev/null 2>&1 || { echo "Please install GNU Make"; exit 1; }
- MAKE=`command -v gmake`
- ;;
-esac
-
-${MAKE} -f Makefile $@
-
-# vim:ft=sh