blob: 459be0ce6331aec7633b625bdca8d60038853e0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
echo Running gettextize...
gettextize -c --intl --no-changelog
echo Running libtoolize...
libtoolize -c -f --automake
echo Running aclocal...
aclocal -I m4
echo Running autoscan...
autoscan
echo Running autoheader...
autoheader
echo Running autoconf...
autoconf
echo Running automake...
#automake -a -c -f --gnu
automake -a -c --gnu
|