blob: 6d1bf2f65b159106ba6ed5a348d54f2732a50c7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
AC_INIT([mate-backgrounds],
[1.8.0],
[http://www.mate-desktop.org])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-xz tar-ustar check-news])
# Internationalization:
GETTEXT_PACKAGE=mate-backgrounds
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],
["$GETTEXT_PACKAGE"], [The domain name to use with gettext.])
AM_GLIB_GNU_GETTEXT()
IT_PROG_INTLTOOL([0.35.0])
AM_MAINTAINER_MODE
AC_OUTPUT([
Makefile
abstract/Makefile
desktop/Makefile
nature/Makefile
po/Makefile.in
])
|