1# Continuous integration build script for FLAC. 2# This script is run by automated frameworks to verify commits 3# see https://mf4.xiph.org/jenkins/job/flac/ 4 5# This is intended to be run from the top-level source directory. 6 7set -x 8 9./autogen.sh 10 11./configure 12 13# Should do 'distcheck' here instead of 'check', but 'distcheck' is currently busted. 14V=1 make clean distcheck 15 16# Since we're doing 'make distcheck' we remove the generated source tarball. 17rm -f flac-*.tar.xz 18