Add error code to use when a secret is not in this database
[abartlet/lorikeet-heimdal.git/.git] / autogen.sh
1 #!/bin/sh
2 #
3 # to really generate all files you need to run "make distcheck" in a
4 # object tree, but this will do if you have all parts of the required
5 # tool-chain installed
6 autoreconf -f -i || { echo "autoreconf failed: $?"; exit 1; }
7 #
8 # This is to build the DISTFILES into the disttree for heimdal-lorikeet
9 #
10 ./configure || exit 1
11 make distdir-in-tree || exit 1
12 make distclean || exit 1
13 exit 0