diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-11-05 20:50:25 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:50 +0200 |
commit | a5f0bb917f1c6f1fa57358ed36546b81b4fcc210 (patch) | |
tree | 3c8cc3d6a8329587e7531e2e5bbc6678135a0c6c /configure.ac | |
parent | 851fdb496728e83cdb3f591a674d3425efc1f11c (diff) | |
download | gnumach-a5f0bb917f1c6f1fa57358ed36546b81b4fcc210.tar.gz gnumach-a5f0bb917f1c6f1fa57358ed36546b81b4fcc210.tar.bz2 gnumach-a5f0bb917f1c6f1fa57358ed36546b81b4fcc210.zip |
2006-11-05 Thomas Schwinge <tschwinge@gnu.org>
[task #5956 --- ``Automake'ify GNU Mach's code base'']
* configure.ac <AM_INIT_AUTOMAKE>: Add `no-define' and `1.9'.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2c4222d5..a4866d60 100644 --- a/configure.ac +++ b/configure.ac @@ -22,8 +22,15 @@ AC_CONFIG_SRCDIR([kern/ipc_kobject.c]) AC_CONFIG_AUX_DIR([build-aux]) +AM_INIT_AUTOMAKE( +dnl Don't define `PACKAGE' and `VERSION'. + [no-define] dnl Do not clutter the main build directory. -AM_INIT_AUTOMAKE([subdir-objects]) + [subdir-objects] +dnl This is only a very rough estimation of the version we actually need. Feel +dnl free to refine that. + [1.9] +) # # Deduce the output variable `systype' from the configuration parameters. |