diff options
author | Perberos <[email protected]> | 2011-12-01 21:46:33 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 21:46:33 -0300 |
commit | 9d1d71a22f9acf0c5c283064b805166ad612013b (patch) | |
tree | 10546fa370323cb9468ab9da26a36eb2147037b9 /configure.in | |
download | mate-common-9d1d71a22f9acf0c5c283064b805166ad612013b.tar.bz2 mate-common-9d1d71a22f9acf0c5c283064b805166ad612013b.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/configure.in b/configure.in new file mode 100644 index 0000000..a9141c0 --- /dev/null +++ b/configure.in @@ -0,0 +1,24 @@ +AC_PREREQ(2.54) +AC_INIT([mate-common], [2011.11.16], [https://github.com/perberos/mate-desktop-environment]) + +AC_CONFIG_SRCDIR([macros2/mate-autogen.sh]) + +AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2]) + +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) + +if test -z "$enable_maintainer_mode"; then + enable_maintainer_mode=yes +fi + +AM_MAINTAINER_MODE([enable]) + +AC_CONFIG_FILES([ +Makefile +mate-common.spec +macros2/Makefile +doc-build/Makefile +doc-build/mate-doc-common +]) + +AC_OUTPUT |