diff options
author | Ryan Kavanagh <rak@rak.ac> | 2021-12-13 16:58:50 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2021-12-13 16:58:50 -0500 |
commit | 439c77b9e72c9088a343d7a81e893cf3f5b2211e (patch) | |
tree | 079da5a71e1882f5ef48bb41736d65a6fd857f70 /dm | |
parent | set catgirl config files to templates (diff) |
drop old stuff
Diffstat (limited to '')
-rwxr-xr-x | dm | 27 |
1 files changed, 0 insertions, 27 deletions
@@ -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 |