Remove unused shell scripts

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui
2019-10-22 20:48:03 +01:00
parent 2d28ab6032
commit d9aa32b40a
3 changed files with 0 additions and 93 deletions

View File

@ -1,16 +0,0 @@
#!/bin/bash
# Test script for GNU make build
BASE_DIR=$(dirname "$0")/..
. "${BASE_DIR}/functions.sh"
OPTIONS=( NO_XINERAMA NO_LIBCONFIG NO_REGEX_PCRE NO_REGEX_PCRE_JIT
NO_VSYNC_DRM NO_VSYNC_OPENGL NO_VSYNC_OPENGL_GLSL NO_VSYNC_OPENGL_FBO
NO_VSYNC_OPENGL_VBO NO_DBUS NO_XSYNC NO_C2 )
for o in "${OPTIONS[@]}"; do
einfo Building with $o
make "${o}=1" -B "${@}" || die
einfo Build completed.
done