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
|
AC_INIT(timer-applet, 2.0.1, jimmydo@users.sourceforge.net)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR(src/timer-applet)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.35.0])
AM_GLIB_GNU_GETTEXT
AC_PATH_PROG(GCONFTOOL, gconftool-2)
AM_GCONF_SOURCE_2
AM_PATH_PYTHON(2.4)
GETTEXT_PACKAGE="timer-applet"
AC_SUBST(GETTEXT_PACKAGE)
AC_CONFIG_FILES([
Makefile
data/Makefile
images/Makefile
po/Makefile.in
src/Makefile
src/timerapplet/Makefile
src/timerapplet/controllers/Makefile
src/timerapplet/core/Makefile
src/timerapplet/ui/Makefile])
AC_OUTPUT
|