9 lines
139 B
Bash
9 lines
139 B
Bash
|
#!/bin/bash
|
||
|
cd ../source
|
||
|
aclocal
|
||
|
autoheader
|
||
|
autoconf
|
||
|
automake --add-missing
|
||
|
export CSCOPE_BINARY=/usr/bin/cscope
|
||
|
./configure && make check
|