kst/autobuild.sh

12 lines
370 B
Bash
Raw Normal View History

2020-02-12 04:32:09 +00:00
#!/bin/sh
# performs a full clean, autoreconf, configure with appropriate options,
# make, and make check: it starts from scratch, with a clean dev checkout
# and performs everything necessary to run the unit tests.
echo "[+] performing autobuild" ; \
autoreconf -i && \
./configure && \
make clean && \
make && \
make check