blob: 81a825bd0c6e68a28dee917affd6bf2e5c925501 (
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 -f -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
|