1#!/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 19 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 31