[go: up one dir, main page]

Menu

[a8a0c6]: / autogen.sh  Maximize  Restore  History

Download this file

37 lines (24 with data), 444 Bytes

 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
34
if [ ! -f AUTHORS ]; then
touch AUTHORS
fi
if [ ! -f NEWS ]; then
touch NEWS
fi
if [ ! -f README ]; then
touch README
fi
if [ ! -f ChangeLog ]; then
touch ChangeLog
fi
# autoscan
## Generate `aclocal.m4' by scanning `configure.ac' or `configure.in'
aclocal
## --- AC_CONFIG_HEADERS
autoheader
## --- AC_PROG_INTLTOOL
intltoolize
## --- AC_PROG_LIBTOOL
# libtoolize --copy
## --- AM_INIT_AUTOMAKE
automake --add-missing
autoconf