forked from hpc/mpifileutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makedist
executable file
·54 lines (40 loc) · 962 Bytes
/
makedist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
. /usr/local/tools/dotkit/init.sh
use mvapich2-gnu
set -x
topdir=`pwd`
installdir=$topdir/install
export PATH="${topdir}/autotools/install/bin:$PATH"
./autogen.sh
rm -rf build
mkdir -p build
cd build
export PKG_CONFIG_PATH="${installdir}/lib/pkgconfig"
# TODO: avoid this step
# necessary so configure test of dtcmp links with MPI
export CC=mpicc
# hack to get things to build after common library
export CFLAGS="-I${topdir}/src/common -DDCOPY_USE_XATTRS"
export LDFLAGS="-Wl,-rpath,${topdir}/install/lib -L${topdir}/install/lib -lcircle"
make distclean
../configure \
--prefix=$installdir \
--disable-silent-rules \
--with-dtcmp=$installdir
#../configure \
# --prefix=/usr/local/fileutils
if [ $? -ne 0 ] ; then
echo "failed to configure"
exit 1
fi
make dist
if [ $? -ne 0 ] ; then
echo "failed to make dist"
exit 1
fi
make distcheck
if [ $? -ne 0 ] ; then
echo "failed to make distcheck"
exit 1
fi
mv *.tar.gz ../.