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 35LUA_OBJS += \ 36 ldo.o \ 37 lvm.o \ 38 lbitlib.o \ 39 lopcodes.o \ 40 lstring.o \ 41 ltable.o \ 42 ltm.o \ 43 lcorolib.o \ 44 lauxlib.o \ 45 ldebug.o \ 46 lstate.o \ 47 lgc.o \ 48 lmem.o \ 49 lctype.o \ 50 lfunc.o \ 51 ldump.o \ 52 lundump.o \ 53 lstrlib.o \ 54 ltablib.o \ 55 lapi.o \ 56 lobject.o \ 57 lbaselib.o \ 58 lcompat.o \ 59 lzio.o \ 60 lcode.o \ 61 llex.o \ 62 lparser.o 63 64ZFS_COMMON_OBJS += \ 65 abd.o \ 66 arc.o \ 67 bplist.o \ 68 blkptr.o \ 69 bpobj.o \ 70 bptree.o \ 71 bqueue.o \ 72 dbuf.o \ 73 ddt.o \ 74 ddt_zap.o \ 75 dmu.o \ 76 dmu_diff.o \ 77 dmu_send.o \ 78 dmu_object.o \ 79 dmu_objset.o \ 80 dmu_traverse.o \ 81 dmu_tx.o \ 82 dnode.o \ 83 dnode_sync.o \ 84 dsl_bookmark.o \ 85 dsl_dir.o \ 86 dsl_dataset.o \ 87 dsl_deadlist.o \ 88 dsl_destroy.o \ 89 dsl_pool.o \ 90 dsl_synctask.o \ 91 dsl_userhold.o \ 92 dmu_zfetch.o \ 93 dsl_deleg.o \ 94 dsl_prop.o \ 95 dsl_scan.o \ 96 zfeature.o \ 97 gzip.o \ 98 lz4.o \ 99 lzjb.o \ 100 metaslab.o \ 101 multilist.o \ 102 range_tree.o \ 103 refcount.o \ 104 rrwlock.o \ 105 sa.o \ 106 sha256.o \ 107 skein_zfs.o \ 108 spa.o \ 109 spa_config.o \ 110 spa_errlog.o \ 111 spa_history.o \ 112 spa_misc.o \ 113 space_map.o \ 114 space_reftree.o \ 115 txg.o \ 116 uberblock.o \ 117 unique.o \ 118 vdev.o \ 119 vdev_cache.o \ 120 vdev_file.o \ 121 vdev_label.o \ 122 vdev_mirror.o \ 123 vdev_missing.o \ 124 vdev_queue.o \ 125 vdev_raidz.o \ 126 vdev_root.o \ 127 zap.o \ 128 zap_leaf.o \ 129 zap_micro.o \ 130 zcp.o \ 131 zcp_get.o \ 132 zcp_global.o \ 133 zcp_iter.o \ 134 zcp_synctask.o \ 135 zfs_byteswap.o \ 136 zfs_debug.o \ 137 zfs_fm.o \ 138 zfs_fuid.o \ 139 zfs_sa.o \ 140 zfs_znode.o \ 141 zil.o \ 142 zio.o \ 143 zio_checksum.o \ 144 zio_compress.o \ 145 zio_inject.o \ 146 zle.o \ 147 zrlock.o 148 149ZFS_SHARED_OBJS += \ 150 zfeature_common.o \ 151 zfs_comutil.o \ 152 zfs_deleg.o \ 153 zfs_fletcher.o \ 154 zfs_namecheck.o \ 155 zfs_prop.o \ 156 zpool_prop.o \ 157 zprop_common.o 158 159ZFS_OBJS += \ 160 $(ZFS_COMMON_OBJS) \ 161 $(ZFS_SHARED_OBJS) \ 162 zfs_acl.o \ 163 zfs_ctldir.o \ 164 zfs_dir.o \ 165 zfs_ioctl.o \ 166 zfs_ioctl_compat.o \ 167 zfs_log.o \ 168 zfs_onexit.o \ 169 zfs_replay.o \ 170 zfs_rlock.o \ 171 zfs_vfsops.o \ 172 zfs_vnops.o \ 173 zvol.o 174