use unsigned instead of uint32_t for LDB counters.
[Samba/cd1.git] / source4 / lib / ldb / standalone.sh
blob8ab081e0f3b76531f501c80ca760c0cdf5b1521e
1 #!/bin/sh
3 cd ../replace
4 make clean
6 cd ../talloc
7 make clean
9 cd ../tdb
10 make clean
12 cd ../events
13 make clean
15 cd ../ldb
16 make clean
18 ./autogen.sh
20 rm -fr build
21 mkdir build
22 cd build
24 ../configure $*
25 make dirs
26 make all
28 cd ..