diff --git a/libraries/libmdb/make.sh b/libraries/libmdb/make.sh
deleted file mode 100755
index 9b5aff213691844bf10a258f74fea80a4581838d..0000000000000000000000000000000000000000
--- a/libraries/libmdb/make.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-warning_filter() {
-    egrep -v ': In function .*:$|: warning: (ISO C99 requires rest arguments to be used|format .*%p.* has type .*struct MDB_.*\*)'
-}
-
-exit `{
-    { XCFLAGS="-std=c99 -pedantic" make "$@" 2>&1; echo $? >&3; } |
-    warning_filter >&2
-} 3>&1`