]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/modules/xfs/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / modules / xfs / Makefile
1 # $FreeBSD$
2
3 .PATH:  ${.CURDIR}/../../gnu/fs/xfs \
4         ${.CURDIR}/../../gnu/fs/xfs/FreeBSD \
5         ${.CURDIR}/../../gnu/fs/xfs/FreeBSD/support
6
7 KMOD=    xfs
8
9 WERROR=
10
11 SRCS =  vnode_if.h \
12         xfs_alloc.c \
13         xfs_alloc_btree.c \
14         xfs_bit.c \
15         xfs_bmap.c \
16         xfs_bmap_btree.c \
17         xfs_btree.c \
18         xfs_buf_item.c \
19         xfs_da_btree.c \
20         xfs_dir.c \
21         xfs_dir2.c \
22         xfs_dir2_block.c \
23         xfs_dir2_data.c \
24         xfs_dir2_leaf.c \
25         xfs_dir2_node.c \
26         xfs_dir2_sf.c \
27         xfs_dir2_trace.c \
28         xfs_dir_leaf.c \
29         xfs_error.c \
30         xfs_extfree_item.c \
31         xfs_freebsd_iget.c \
32         xfs_fsops.c \
33         xfs_ialloc.c \
34         xfs_ialloc_btree.c \
35         xfs_inode.c \
36         xfs_inode_item.c \
37         xfs_iocore.c \
38         xfs_itable.c \
39         xfs_dfrag.c \
40         xfs_log.c \
41         xfs_log_recover.c \
42         xfs_mount.c \
43         xfs_rename.c \
44         xfs_trans.c \
45         xfs_trans_ail.c \
46         xfs_trans_buf.c \
47         xfs_trans_extfree.c \
48         xfs_trans_inode.c \
49         xfs_trans_item.c \
50         xfs_utils.c \
51         xfs_vfsops.c \
52         xfs_vnodeops.c \
53         xfs_rw.c \
54         xfs_iget.c \
55         xfs_attr_leaf.c \
56         xfs_attr.c \
57         xfsrtstubs.c \
58         xfsquotasstubs.c \
59         xfsdmapistubs.c \
60         xfs_dmops.c \
61         xfs_qmops.c \
62         xfs_mountops.c \
63         xfs_vnops.c \
64         xfs_frw.c \
65         xfs_iomap.c \
66         xfs_buf.c \
67         xfs_globals.c \
68         xfs_dmistubs.c \
69         xfs_behavior.c \
70         xfs_super.c \
71         xfs_stats.c \
72         xfs_sysctl.c \
73         xfs_vfs.c \
74         xfs_vnode.c \
75         xfs_fs_subr.c \
76         xfs_ioctl.c \
77         debug.c \
78         ktrace.c \
79         mrlock.c \
80         uuid.c \
81         kmem.c \
82         kdb.c
83
84 SRCS+=  opt_ddb.h
85
86 .include <bsd.kmod.mk>
87
88 CFLAGS+= -I${.CURDIR}/../../gnu/fs/xfs/FreeBSD \
89          -I${.CURDIR}/../../gnu/fs/xfs/FreeBSD/support \
90          -I${.CURDIR}/../../gnu/fs/xfs
91
92 #
93 # XFS sources trigger missing-prototypes warnings.
94 # Disable them here.
95 #
96 CWARNFLAGS+= -Wno-missing-prototypes