blob: 9daba3b7b59eefcc3dce0c664b66ecd87de4b817 [file] [log] [blame]
Andrew Jeffery22778042017-01-13 22:37:26 +10301#!/bin/sh
2
3AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile \
4 config.guess config.h.in config.sub configure depcomp install-sh \
5 ltmain.sh missing *libtool test-driver"
6
7case $1 in
8 clean)
9 test -f Makefile && make maintainer-clean
10 test -d linux && find linux -type d -empty | xargs -r rm -rf
11 for file in ${AUTOCONF_FILES}; do
12 find -name "$file" | xargs -r rm -rf
13 done
14 exit 0
15 ;;
16esac
17
18autoreconf -i
Andrew Jeffery56b2aa32017-04-13 13:25:05 +093019
20case $1 in
21 dev)
22 ./configure \
23 CPPFLAGS="-UNDEBUG" \
24 CFLAGS="-fsanitize=address -fsanitize=leak -fsanitize=undefined -Wall -Werror" \
25 --enable-code-coverage
26 ;;
27 *)
28 echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'
29 ;;
30esac