15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
)
for file in config.guess config.sub install-sh; do
rm -f "${file}"
done
aclocal -I aclocal
autoconf
automake -fca
rm -rf autom4te.cache
rm -f libconfig.vers
make srcdir=. -f Makefile.in ./libconfig.vers
|
>
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
)
for file in config.guess config.sub install-sh; do
rm -f "${file}"
done
aclocal -I aclocal
autoheader
autoconf
automake -fca
rm -rf autom4te.cache
rm -f libconfig.vers
make srcdir=. -f Makefile.in ./libconfig.vers
|