11 lines
216 B
Bash
11 lines
216 B
Bash
|
#!/bin/bash -e
|
||
|
[ -d m4 ] || mkdir m4
|
||
|
autopoint --force
|
||
|
libtoolize --copy --force
|
||
|
aclocal -I m4
|
||
|
autoconf
|
||
|
autoheader --force
|
||
|
automake --foreign --add-missing --copy
|
||
|
rm -rf autom4te.cache
|
||
|
( cd widgets && ./autogen.sh )
|