aboutsummaryrefslogtreecommitdiff
path: root/makeconf.sh
blob: f21378d85bf6806e7c331436a0b1caafa53658ee (plain)
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
#! /bin/sh

echo Running libtoolize...
libtoolize --automake -c -f

cp /usr/share/gettext/config.rpath .

if test ! -z "`which autoreconf`"; then
    echo Running autoreconf...
    autoreconf -i -f
else
    echo Running aclocal...
    aclocal
    echo Running autoheader...
    autoheader
    echo Running autoconf...
    autoconf
    echo Running automake...
    automake -a -c
    (
	echo Entering directory: kernel
	cd kernel
	echo Running autoheader...
	autoheader
	echo Running autoconf...
	autoconf
    )
fi
echo Linking kernel header file...
ln -sf ../kernel/fuse_kernel.h `dirname $0`/include

rm -f config.cache config.status
echo "To compile run './configure', and then 'make'."