Makefile.files revision 262093
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
24# Copyright (c) 2012 Nexenta Systems, Inc. All rights reserved.
25# Copyright (c) 2013 by Delphix. All rights reserved.
26# Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
27#
28#
29# This Makefile defines all file modules for the directory uts/common
30# and its children. These are the source files which may be considered
31# common to all SunOS systems.
32
33ZFS_COMMON_OBJS +=		\
34	arc.o			\
35	bplist.o		\
36	bpobj.o			\
37	bptree.o		\
38	dbuf.o			\
39	ddt.o			\
40	ddt_zap.o		\
41	dmu.o			\
42	dmu_diff.o		\
43	dmu_send.o		\
44	dmu_object.o		\
45	dmu_objset.o		\
46	dmu_traverse.o		\
47	dmu_tx.o		\
48	dnode.o			\
49	dnode_sync.o		\
50	dsl_dir.o		\
51	dsl_dataset.o		\
52	dsl_deadlist.o		\
53	dsl_destroy.o		\
54	dsl_pool.o		\
55	dsl_synctask.o		\
56	dsl_userhold.o		\
57	dmu_zfetch.o		\
58	dsl_deleg.o		\
59	dsl_prop.o		\
60	dsl_scan.o		\
61	zfeature.o		\
62	gzip.o			\
63	lz4.o			\
64	lzjb.o			\
65	metaslab.o		\
66	range_tree.o		\
67	refcount.o		\
68	rrwlock.o		\
69	sa.o			\
70	sha256.o		\
71	spa.o			\
72	spa_config.o		\
73	spa_errlog.o		\
74	spa_history.o		\
75	spa_misc.o		\
76	space_map.o		\
77	space_reftree.o		\
78	txg.o			\
79	uberblock.o		\
80	unique.o		\
81	vdev.o			\
82	vdev_cache.o		\
83	vdev_file.o		\
84	vdev_label.o		\
85	vdev_mirror.o		\
86	vdev_missing.o		\
87	vdev_queue.o		\
88	vdev_raidz.o		\
89	vdev_root.o		\
90	zap.o			\
91	zap_leaf.o		\
92	zap_micro.o		\
93	zfs_byteswap.o		\
94	zfs_debug.o		\
95	zfs_fm.o		\
96	zfs_fuid.o		\
97	zfs_sa.o		\
98	zfs_znode.o		\
99	zil.o			\
100	zio.o			\
101	zio_checksum.o		\
102	zio_compress.o		\
103	zio_inject.o		\
104	zle.o			\
105	zrlock.o
106
107ZFS_SHARED_OBJS +=		\
108	zfeature_common.o	\
109	zfs_comutil.o		\
110	zfs_deleg.o		\
111	zfs_fletcher.o		\
112	zfs_namecheck.o		\
113	zfs_prop.o		\
114	zpool_prop.o		\
115	zprop_common.o
116
117ZFS_OBJS +=			\
118	$(ZFS_COMMON_OBJS)	\
119	$(ZFS_SHARED_OBJS)	\
120	zfs_acl.o		\
121	zfs_ctldir.o		\
122	zfs_dir.o		\
123	zfs_ioctl.o		\
124	zfs_ioctl_compat.o	\
125	zfs_log.o		\
126	zfs_onexit.o		\
127	zfs_replay.o		\
128	zfs_rlock.o		\
129	zfs_vfsops.o		\
130	zfs_vnops.o		\
131	zvol.o
132