-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfigure.ac
70 lines (63 loc) · 2.04 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
* This file is part of the 'Automated ZFS Test Suite'
*
* Copyright (c) 2014 Turbo Fredriksson <[email protected]>
*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
AC_INIT([zfs-test], [0.9])
AC_LANG(C)
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_MACRO_DIR([config])
AC_CANONICAL_SYSTEM
AM_MAINTAINER_MODE
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_INIT_AUTOMAKE
AC_PROG_CC
AC_PROG_INSTALL
AM_PROG_AS
PREFIX=`/bin/pwd`/test
AC_SUBST(PREFIX)
m4_include(config/system.m4)
m4_include(config/commands-common.m4)
m4_include(config/commands-linux.m4)
m4_include(config/commands-bsd.m4)
ZFS_AC_SYSTEM
AC_CONFIG_FILES([
Makefile
test/zfs-tests/cmd/largest_file/Makefile
test/zfs-tests/cmd/mkbusy/Makefile
test/zfs-tests/cmd/file_trunc/Makefile
test/zfs-tests/cmd/readmmap/Makefile
test/zfs-tests/cmd/file_write/Makefile
test/zfs-tests/cmd/randfree_file/Makefile
test/zfs-tests/cmd/mktree/Makefile
test/zfs-tests/cmd/file_check/Makefile
test/zfs-tests/cmd/rm_lnkcnt_zero_file/Makefile
test/zfs-tests/cmd/chg_usr_exec/Makefile
test/zfs-tests/cmd/mmapwrite/Makefile
test/zfs-tests/tests/functional/exec/Makefile
test/zfs-tests/tests/functional/ctime/Makefile
test/zfs-tests/include/commands.cfg
test/zfs-tests/runfiles/osx.run
test/zfs-tests/include/default.cfg
])
AC_OUTPUT