xref: /freebsd/sys/cddl/contrib/opensolaris/uts/common/Makefile.files (revision aa24f48b361effe51163877d84f1b70d32b77e04)
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) 2012 Nexenta Systems, Inc. All rights reserved.
26# Copyright (c) 2012 Joyent, Inc.  All rights reserved.
27# Copyright (c) 2011, 2014 by Delphix. All rights reserved.
28# Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
29#
30#
31# This Makefile defines all file modules for the directory uts/common
32# and its children. These are the source files which may be considered
33# common to all SunOS systems.
34
35ZFS_COMMON_OBJS +=		\
36	abd.o			\
37	arc.o			\
38	bplist.o		\
39	blkptr.o		\
40	bpobj.o			\
41	bptree.o		\
42	bqueue.o		\
43	dbuf.o			\
44	ddt.o			\
45	ddt_zap.o		\
46	dmu.o			\
47	dmu_diff.o		\
48	dmu_send.o		\
49	dmu_object.o		\
50	dmu_objset.o		\
51	dmu_traverse.o		\
52	dmu_tx.o		\
53	dnode.o			\
54	dnode_sync.o		\
55	dsl_bookmark.o		\
56	dsl_dir.o		\
57	dsl_dataset.o		\
58	dsl_deadlist.o		\
59	dsl_destroy.o		\
60	dsl_pool.o		\
61	dsl_synctask.o		\
62	dsl_userhold.o		\
63	dmu_zfetch.o		\
64	dsl_deleg.o		\
65	dsl_prop.o		\
66	dsl_scan.o		\
67	zfeature.o		\
68	gzip.o			\
69	lz4.o			\
70	lzjb.o			\
71	metaslab.o		\
72	multilist.o		\
73	range_tree.o		\
74	refcount.o		\
75	rrwlock.o		\
76	sa.o			\
77	sha256.o		\
78	skein_zfs.o		\
79	spa.o			\
80	spa_config.o		\
81	spa_errlog.o		\
82	spa_history.o		\
83	spa_misc.o		\
84	space_map.o		\
85	space_reftree.o		\
86	txg.o			\
87	uberblock.o		\
88	unique.o		\
89	vdev.o			\
90	vdev_cache.o		\
91	vdev_file.o		\
92	vdev_label.o		\
93	vdev_mirror.o		\
94	vdev_missing.o		\
95	vdev_queue.o		\
96	vdev_raidz.o		\
97	vdev_root.o		\
98	zap.o			\
99	zap_leaf.o		\
100	zap_micro.o		\
101	zfs_byteswap.o		\
102	zfs_debug.o		\
103	zfs_fm.o		\
104	zfs_fuid.o		\
105	zfs_sa.o		\
106	zfs_znode.o		\
107	zil.o			\
108	zio.o			\
109	zio_checksum.o		\
110	zio_compress.o		\
111	zio_inject.o		\
112	zle.o			\
113	zrlock.o
114
115ZFS_SHARED_OBJS +=		\
116	zfeature_common.o	\
117	zfs_comutil.o		\
118	zfs_deleg.o		\
119	zfs_fletcher.o		\
120	zfs_namecheck.o		\
121	zfs_prop.o		\
122	zpool_prop.o		\
123	zprop_common.o
124
125ZFS_OBJS +=			\
126	$(ZFS_COMMON_OBJS)	\
127	$(ZFS_SHARED_OBJS)	\
128	zfs_acl.o		\
129	zfs_ctldir.o		\
130	zfs_dir.o		\
131	zfs_ioctl.o		\
132	zfs_ioctl_compat.o	\
133	zfs_log.o		\
134	zfs_onexit.o		\
135	zfs_replay.o		\
136	zfs_rlock.o		\
137	zfs_vfsops.o		\
138	zfs_vnops.o		\
139	zvol.o
140