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