summaryrefslogtreecommitdiff
path: root/custom/prog_mkdep
diff options
context:
space:
mode:
authorAndrew Shadura <andrew@shadura.me>2015-07-25 14:44:54 +0200
committerAndrew Shadura <andrew@shadura.me>2015-07-25 14:44:54 +0200
commit7bea690e43ee009efc9e8f6a45504496348cd3ee (patch)
tree4e958845f208f3398e3a5bbf7532199ee49a4989 /custom/prog_mkdep
parent8d15cbf39b8aa01eaabfa3167e6ce3dc9f9e0af8 (diff)
Imported Upstream version 0.28.0
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 ''