]> git.proxmox.com Git - mirror_zfs-debian.git/blame - configure.ac
Add make rule for building Arch Linux packages
[mirror_zfs-debian.git] / configure.ac
CommitLineData
c9c0d073
BB
1/*
2 * This file is part of the ZFS Linux port.
3 *
4 * Copyright (c) 2009 Lawrence Livermore National Security, LLC.
5 * Produced at Lawrence Livermore National Laboratory
6 * Written by:
7 * Brian Behlendorf <behlendorf1@llnl.gov>,
8 * Herb Wartens <wartens2@llnl.gov>,
9 * Jim Garlick <garlick@llnl.gov>
10 * LLNL-CODE-403049
11 *
12 * CDDL HEADER START
13 *
14 * The contents of this file are subject to the terms of the
15 * Common Development and Distribution License, Version 1.0 only
16 * (the "License"). You may not use this file except in compliance
17 * with the License.
18 *
19 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
20 * or http://www.opensolaris.org/os/licensing.
21 * See the License for the specific language governing permissions
22 * and limitations under the License.
23 *
24 * When distributing Covered Code, include this CDDL HEADER in each
25 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
26 * If applicable, add the following below this CDDL HEADER, with the
27 * fields enclosed by brackets "[]" replaced with your own identifying
28 * information: Portions Copyright [yyyy] [name of copyright owner]
29 *
30 * CDDL HEADER END
31 */
32
33AC_INIT
34AC_LANG(C)
35ZFS_AC_META
36AC_CONFIG_AUX_DIR([config])
37AC_CANONICAL_SYSTEM
38AM_MAINTAINER_MODE
39AM_SILENT_RULES
40AM_INIT_AUTOMAKE([$ZFS_META_NAME], [$ZFS_META_VERSION])
41AC_CONFIG_HEADERS([zfs_config.h], [
42 (mv zfs_config.h zfs_config.h.tmp &&
6283f55e 43 awk -f ${ac_srcdir}/config/config.awk zfs_config.h.tmp >zfs_config.h &&
c9c0d073
BB
44 rm zfs_config.h.tmp) || exit 1])
45
46AC_PROG_INSTALL
47AC_PROG_CC
48AC_PROG_LIBTOOL
49AM_PROG_AS
50
51ZFS_AC_LICENSE
52ZFS_AC_PACKAGE
53ZFS_AC_CONFIG
54ZFS_AC_DEBUG
55
56AC_CONFIG_FILES([
57 Makefile
ae26d046
MAR
58 dracut/Makefile
59 dracut/90zfs/Makefile
12d06bac
KF
60 udev/Makefile
61 udev/rules.d/Makefile
c9c0d073 62 etc/Makefile
01c0e61d
BB
63 etc/init.d/Makefile
64 etc/zfs/Makefile
c9c0d073
BB
65 man/Makefile
66 man/man8/Makefile
67 lib/Makefile
a26baf28
BB
68 lib/libspl/Makefile
69 lib/libspl/asm-generic/Makefile
70 lib/libspl/asm-i386/Makefile
71 lib/libspl/asm-x86_64/Makefile
72 lib/libspl/include/Makefile
6283f55e
BB
73 lib/libspl/include/ia32/Makefile
74 lib/libspl/include/ia32/sys/Makefile
75 lib/libspl/include/rpc/Makefile
76 lib/libspl/include/sys/Makefile
77 lib/libspl/include/sys/sysevent/Makefile
78 lib/libspl/include/sys/dktp/Makefile
79 lib/libspl/include/util/Makefile
c9c0d073
BB
80 lib/libavl/Makefile
81 lib/libefi/Makefile
82 lib/libnvpair/Makefile
83 lib/libunicode/Makefile
84 lib/libuutil/Makefile
85 lib/libzpool/Makefile
c9c0d073 86 lib/libzfs/Makefile
46e18b3f 87 lib/libshare/Makefile
c9c0d073
BB
88 cmd/Makefile
89 cmd/zdb/Makefile
90 cmd/zfs/Makefile
91 cmd/zinject/Makefile
92 cmd/zpool/Makefile
c9c0d073 93 cmd/ztest/Makefile
302ef151 94 cmd/zpios/Makefile
d53368f6
BB
95 cmd/mount_zfs/Makefile
96 cmd/zpool_layout/Makefile
4c0d8e50 97 cmd/zvol_id/Makefile
d53368f6 98 cmd/zpool_id/Makefile
560bcf9d 99 cmd/sas_switch_id/Makefile
c9c0d073
BB
100 module/Makefile
101 module/avl/Makefile
102 module/nvpair/Makefile
103 module/unicode/Makefile
104 module/zcommon/Makefile
105 module/zfs/Makefile
302ef151 106 module/zpios/Makefile
6283f55e 107 include/Makefile
8299a1f4 108 include/linux/Makefile
6283f55e
BB
109 include/sys/Makefile
110 include/sys/fs/Makefile
111 include/sys/fm/Makefile
112 include/sys/fm/fs/Makefile
c9c0d073 113 scripts/Makefile
6283f55e
BB
114 scripts/zpios-profile/Makefile
115 scripts/zpios-test/Makefile
116 scripts/zpool-config/Makefile
a5b4d635 117 scripts/zpool-layout/Makefile
c9c0d073
BB
118 scripts/common.sh
119 zfs.spec
120 zfs-modules.spec
6ba3b446
PS
121 PKGBUILD-zfs
122 PKGBUILD-zfs-modules
6283f55e 123 zfs-script-config.sh
c9c0d073
BB
124])
125
126AC_OUTPUT