Add initial autoconf support to make it easier to get ported to

other platforms
This commit is contained in:
Ronnie Sahlberg
2010-12-05 13:31:11 +11:00
parent 709d85c4da
commit d7a1103e13
3 changed files with 75 additions and 0 deletions

15
autogen.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
rm -rf autom4te.cache
rm -f configure config.h.in ctdb.pc
IPATHS="-I ./include -I ../include"
autoheader $IPATHS || exit 1
autoconf $IPATHS || exit 1
rm -rf autom4te.cache
echo "Now run ./configure and then make."
exit 0