12 lines
370 B
Bash
12 lines
370 B
Bash
|
#!/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
|