blob: bd101678ed3e470f2cb60013c13796e13fccff96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
echo Running gettextize...
gettextize -c
echo Running libtoolize...
libtoolize -c --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 --gnu
|