Makefile.files revision 268649
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	blkptr.o		\
37	bpobj.o			\
38	bptree.o		\
39	dbuf.o			\
40	ddt.o			\
41	ddt_zap.o		\
42	dmu.o			\
43	dmu_diff.o		\
44	dmu_send.o		\
45	dmu_object.o		\
46	dmu_objset.o		\
47	dmu_traverse.o		\
48	dmu_tx.o		\
49	dnode.o			\
50	dnode_sync.o		\
51	dsl_bookmark.o		\
52	dsl_dir.o		\
53	dsl_dataset.o		\
54	dsl_deadlist.o		\
55	dsl_destroy.o		\
56	dsl_pool.o		\
57	dsl_synctask.o		\
58	dsl_userhold.o		\
59	dmu_zfetch.o		\
60	dsl_deleg.o		\
61	dsl_prop.o		\
62	dsl_scan.o		\
63	zfeature.o		\
64	gzip.o			\
65	lz4.o			\
66	lzjb.o			\
67	metaslab.o		\
68	range_tree.o		\
69	refcount.o		\
70	rrwlock.o		\
71	sa.o			\
72	sha256.o		\
73	spa.o			\
74	spa_config.o		\
75	spa_errlog.o		\
76	spa_history.o		\
77	spa_misc.o		\
78	space_map.o		\
79	space_reftree.o		\
80	txg.o			\
81	uberblock.o		\
82	unique.o		\
83	vdev.o			\
84	vdev_cache.o		\
85	vdev_file.o		\
86	vdev_label.o		\
87	vdev_mirror.o		\
88	vdev_missing.o		\
89	vdev_queue.o		\
90	vdev_raidz.o		\
91	vdev_root.o		\
92	zap.o			\
93	zap_leaf.o		\
94	zap_micro.o		\
95	zfs_byteswap.o		\
96	zfs_debug.o		\
97	zfs_fm.o		\
98	zfs_fuid.o		\
99	zfs_sa.o		\
100	zfs_znode.o		\
101	zil.o			\
102	zio.o			\
103	zio_checksum.o		\
104	zio_compress.o		\
105	zio_inject.o		\
106	zle.o			\
107	zrlock.o
108
109ZFS_SHARED_OBJS +=		\
110	zfeature_common.o	\
111	zfs_comutil.o		\
112	zfs_deleg.o		\
113	zfs_fletcher.o		\
114	zfs_namecheck.o		\
115	zfs_prop.o		\
116	zpool_prop.o		\
117	zprop_common.o
118
119ZFS_OBJS +=			\
120	$(ZFS_COMMON_OBJS)	\
121	$(ZFS_SHARED_OBJS)	\
122	zfs_acl.o		\
123	zfs_ctldir.o		\
124	zfs_dir.o		\
125	zfs_ioctl.o		\
126	zfs_ioctl_compat.o	\
127	zfs_log.o		\
128	zfs_onexit.o		\
129	zfs_replay.o		\
130	zfs_rlock.o		\
131	zfs_vfsops.o		\
132	zfs_vnops.o		\
133	zvol.o
134