automake: fix initialization
Reference: http://www.gnu.org/software/automake/manual/automake.html#Public-Macros
This commit is contained in:
parent
b825874d2e
commit
ea2464a9ea
2 changed files with 7 additions and 3 deletions
|
@ -16,7 +16,7 @@ libtoolize --copy --force --automake
|
||||||
rm -f config.cache
|
rm -f config.cache
|
||||||
dothis aclocal -I . ${ACLOCAL_FLAGS}
|
dothis aclocal -I . ${ACLOCAL_FLAGS}
|
||||||
dothis autoheader
|
dothis autoheader
|
||||||
dothis automake -a -c --warnings=none
|
dothis automake -a -c
|
||||||
dothis autoconf
|
dothis autoconf
|
||||||
|
|
||||||
echo 'Success, now continue with ./configure'
|
echo 'Success, now continue with ./configure'
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
dnl Initialize autoconf and automake
|
dnl Initialize autoconf and automake
|
||||||
AC_INIT(src/main.cc)
|
|
||||||
AC_PREREQ(2.52)
|
AC_PREREQ(2.52)
|
||||||
AM_INIT_AUTOMAKE(fluxbox,1.3.3,[no-define])
|
AC_INIT([fluxbox],
|
||||||
|
[1.3.3],
|
||||||
|
[fluxbox-devel@lists.sourceforge.net],,
|
||||||
|
[http://fluxbox.org/])
|
||||||
|
AC_CONFIG_SRCDIR([src/fluxbox.cc])
|
||||||
|
AM_INIT_AUTOMAKE([foreign 1.10 tar-pax dist-bzip2 no-dist-gzip dist-xz])
|
||||||
|
|
||||||
dnl Determine default prefix
|
dnl Determine default prefix
|
||||||
AS_IF(test "x$prefix" = "xNONE",[prefix="$ac_default_prefix"])
|
AS_IF(test "x$prefix" = "xNONE",[prefix="$ac_default_prefix"])
|
||||||
|
|
Loading…
Reference in a new issue