1998-10-11 Martin Baulig <martin@home-of-linux.org> * configure.in, automake.sh, Automakefile.am: New files. This is now a package of its own.
25 lines
496 B
Plaintext
25 lines
496 B
Plaintext
|
|
AC_INIT(Libgtop.pm)
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
AM_INIT_AUTOMAKE(Libgtop, 0.29)
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
dnl We don't use `AC_PROG_AWK' since it checks for mawk first which
|
|
dnl does not work for libgtop.
|
|
AC_CHECK_PROGS(AWK, gawk awk, )
|
|
test -z "$AWK" && AC_MSG_ERROR([Sorry, you need a working awk interpreter.])
|
|
|
|
dnl Check for libgtop
|
|
GNOME_INIT_LIBGTOP(0.25, fail)
|
|
|
|
dnl utility conditional
|
|
AM_CONDITIONAL(FALSE, test "x" = "y")
|
|
|
|
AC_OUTPUT([
|
|
Automakefile
|
|
Makefile.PL
|
|
Names/Makefile.PL
|
|
stamp.h],[])
|