Makefile.files revision 211932
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
22ZUT_OBJS +=			\
23	zut.o
24
25#
26# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
27# Use is subject to license terms.
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	dbuf.o			\
37	dmu.o			\
38	dmu_send.o		\
39	dmu_object.o		\
40	dmu_objset.o		\
41	dmu_traverse.o		\
42	dmu_tx.o		\
43	dnode.o			\
44	dnode_sync.o		\
45	dsl_dir.o		\
46	dsl_dataset.o		\
47	dsl_pool.o		\
48	dsl_synctask.o		\
49	dmu_zfetch.o		\
50	dsl_deleg.o		\
51	dsl_prop.o		\
52	dsl_scrub.o		\
53	fletcher.o		\
54	gzip.o			\
55	lzjb.o			\
56	metaslab.o		\
57	refcount.o		\
58	sha256.o		\
59	spa.o			\
60	spa_config.o		\
61	spa_errlog.o		\
62	spa_history.o		\
63	spa_misc.o		\
64	space_map.o		\
65	txg.o			\
66	uberblock.o		\
67	unique.o		\
68	vdev.o			\
69	vdev_cache.o		\
70	vdev_file.o		\
71	vdev_label.o		\
72	vdev_mirror.o		\
73	vdev_missing.o		\
74	vdev_queue.o		\
75	vdev_raidz.o		\
76	vdev_root.o		\
77	zap.o			\
78	zap_leaf.o		\
79	zap_micro.o		\
80	zfs_byteswap.o		\
81	zfs_fm.o		\
82	zfs_fuid.o		\
83	zfs_znode.o		\
84	zil.o			\
85	zio.o			\
86	zio_checksum.o		\
87	zio_compress.o		\
88	zio_inject.o
89
90ZFS_SHARED_OBJS +=		\
91	zfs_namecheck.o		\
92	zfs_deleg.o		\
93	zfs_prop.o		\
94	zfs_comutil.o		\
95	zpool_prop.o		\
96	zprop_common.o
97
98ZFS_OBJS +=			\
99	$(ZFS_COMMON_OBJS)	\
100	$(ZFS_SHARED_OBJS)	\
101	zfs_acl.o		\
102	zfs_ctldir.o		\
103	zfs_dir.o		\
104	zfs_ioctl.o		\
105	zfs_log.o		\
106	zfs_replay.o		\
107	zfs_rlock.o		\
108	rrwlock.o		\
109	zfs_vfsops.o		\
110	zfs_vnops.o		\
111	zvol.o
112