]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - autogen.sh
Breaking the world for a little bit. If anyone is going to continue
[FreeBSD/FreeBSD.git] / autogen.sh
1 #!/bin/sh
2
3 find . -type d -name .deps | xargs rm -rf
4 rm -rf config.guess config.sub ltmain.sh
5 libtoolize --automake
6 aclocal -I autoconf 2>/dev/null &&
7 autoheader &&
8 automake --add-missing --include-deps 2>/dev/null
9 autoconf
10