summaryrefslogtreecommitdiff
path: root/custom/prog_mkdep
diff options
context:
space:
mode:
Diffstat (limited to 'custom/prog_mkdep')
-rwxr-xr-xcustom/prog_mkdep39
1 files changed, 0 insertions, 39 deletions
diff --git a/custom/prog_mkdep b/custom/prog_mkdep
deleted file mode 100755
index c2e1b94..0000000
--- a/custom/prog_mkdep
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-
-############################################################
-# Copyright (c) 2013 by Aleksey Cheusov
-#
-# See LICENSE file in the distribution.
-############################################################
-
-LC_ALL=C
-export LC_ALL
-
-extra_args="$*"
-
-pathpart='custom_nbmkdep'
-. mkc_check_common.sh
-
-trap "rm -f $tmpc $tmpo" 0
-
-cat > "$tmpc" <<'EOF'
-#include <stdio.h>
-EOF
-
-if test -n "$MKDEP_CC"; then
- CC="$MKDEP_CC"
- export CC
-fi
-
-check_mkdep (){
- "$1" -f "$tmpo" $extra_args -I . -I `pwd` "$tmpc"
-}
-
-for i in bmkdep nbmkdep mkdep; do
- if test -z "`check_mkdep $i 2>&1 > /dev/null`"; then
- mkc_which $i
- exit 0
- fi
-done
-
-echo ''