lowlevel lib: add fuse_reply_iov function...
[fuse.git] / makeconf.sh
blobf21378d85bf6806e7c331436a0b1caafa53658ee
1 #! /bin/sh
3 echo Running libtoolize...
4 libtoolize --automake -c -f
6 cp /usr/share/gettext/config.rpath .
8 if test ! -z "`which autoreconf`"; then
9 echo Running autoreconf...
10 autoreconf -i -f
11 else
12 echo Running aclocal...
13 aclocal
14 echo Running autoheader...
15 autoheader
16 echo Running autoconf...
17 autoconf
18 echo Running automake...
19 automake -a -c
21 echo Entering directory: kernel
22 cd kernel
23 echo Running autoheader...
24 autoheader
25 echo Running autoconf...
26 autoconf
29 echo Linking kernel header file...
30 ln -sf ../kernel/fuse_kernel.h `dirname $0`/include
32 rm -f config.cache config.status
33 echo "To compile run './configure', and then 'make'."