]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - configure.ac
Document SPL module parameters.
[FreeBSD/FreeBSD.git] / configure.ac
1 ###############################################################################
2 # SPL AutoConf Configuration
3 ###############################################################################
4 # Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
5 # Copyright (C) 2007 The Regents of the University of California.
6 # Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
7 # Written by Brian Behlendorf <behlendorf1@llnl.gov>.
8 # UCRL-CODE-235197
9 #
10 # This file is part of the SPL, Solaris Porting Layer.
11 # For details, see <http://zfsonlinux.org/>.
12 #
13 # The SPL is free software; you can redistribute it and/or modify it
14 # under the terms of the GNU General Public License as published by the
15 # Free Software Foundation; either version 2 of the License, or (at your
16 # option) any later version.
17 #
18 # The SPL is distributed in the hope that it will be useful, but WITHOUT
19 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
21 # for more details.
22 #
23 # You should have received a copy of the GNU General Public License along
24 # with the SPL.  If not, see <http://www.gnu.org/licenses/>.
25 ###############################################################################
26
27 AC_INIT
28 AC_LANG(C)
29 SPL_AC_META
30 AC_CONFIG_AUX_DIR([config])
31 AC_CONFIG_MACRO_DIR([config])
32 AC_CANONICAL_SYSTEM
33 AM_MAINTAINER_MODE
34 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
35 AM_INIT_AUTOMAKE([$SPL_META_NAME], [$SPL_META_VERSION])
36 AC_CONFIG_HEADERS([spl_config.h], [
37         (mv spl_config.h spl_config.h.tmp &&
38         awk -f ${ac_srcdir}/config/config.awk spl_config.h.tmp >spl_config.h &&
39         rm spl_config.h.tmp) || exit 1])
40
41 AC_PROG_INSTALL
42 AC_PROG_CC
43 AC_PROG_LIBTOOL
44
45 SPL_AC_LICENSE
46 SPL_AC_PACKAGE
47 SPL_AC_CONFIG
48
49 AC_CONFIG_FILES([
50         Makefile
51         man/Makefile
52         man/man1/Makefile
53         man/man5/Makefile
54         lib/Makefile
55         cmd/Makefile
56         module/Makefile
57         module/spl/Makefile
58         module/splat/Makefile
59         include/Makefile
60         include/fs/Makefile
61         include/linux/Makefile
62         include/rpc/Makefile
63         include/sharefs/Makefile
64         include/sys/Makefile
65         include/sys/fm/Makefile
66         include/sys/fs/Makefile
67         include/sys/sysevent/Makefile
68         include/util/Makefile
69         include/vm/Makefile
70         scripts/Makefile
71         rpm/Makefile
72         rpm/fedora/Makefile
73         rpm/fedora/spl.spec
74         rpm/fedora/spl-kmod.spec
75         rpm/fedora/spl-dkms.spec
76         rpm/generic/Makefile
77         rpm/generic/spl.spec
78         rpm/generic/spl-kmod.spec
79         rpm/generic/spl-dkms.spec
80         spl.release
81 ])
82
83 AC_OUTPUT