xref: /titanic_51/usr/src/lib/libzfs/Makefile.com (revision f808c858fa61e7769218966759510a8b1190dfcf)
1fa9e4066Sahrens#
2fa9e4066Sahrens# CDDL HEADER START
3fa9e4066Sahrens#
4fa9e4066Sahrens# The contents of this file are subject to the terms of the
5*f808c858Sraf# Common Development and Distribution License (the "License").
6*f808c858Sraf# You may not use this file except in compliance with the License.
7fa9e4066Sahrens#
8fa9e4066Sahrens# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens# or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens# See the License for the specific language governing permissions
11fa9e4066Sahrens# and limitations under the License.
12fa9e4066Sahrens#
13fa9e4066Sahrens# When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens# If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens# fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens# information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens#
19fa9e4066Sahrens# CDDL HEADER END
20fa9e4066Sahrens#
21fa9e4066Sahrens#
22*f808c858Sraf# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23fa9e4066Sahrens# Use is subject to license terms.
24fa9e4066Sahrens#
25fa9e4066Sahrens# ident	"%Z%%M%	%I%	%E% SMI"
26*f808c858Sraf#
27fa9e4066Sahrens
28fa9e4066SahrensLIBRARY= libzfs.a
29fa9e4066SahrensVERS= .1
30fa9e4066Sahrens
31fa9e4066SahrensOBJS_SHARED= zfs_namecheck.o zfs_prop.o
32fa9e4066SahrensOBJS_COMMON= libzfs_dataset.o libzfs_util.o libzfs_graph.o libzfs_mount.o \
33fa9e4066Sahrens	libzfs_pool.o libzfs_changelist.o libzfs_config.o libzfs_import.o \
34fa9e4066Sahrens	libzfs_status.o
35fa9e4066SahrensOBJECTS= $(OBJS_COMMON) $(OBJS_SHARED)
36fa9e4066Sahrens
37fa9e4066Sahrensinclude ../../Makefile.lib
38fa9e4066Sahrens
3964dbca9eSeschrock# libzfs must be installed in the root filesystem for mount(1M)
4064dbca9eSeschrockinclude ../../Makefile.rootfs
4164dbca9eSeschrock
42fa9e4066SahrensLIBS=	$(DYNLIB) $(LINTLIB)
43fa9e4066Sahrens
44*f808c858SrafSRCDIR =	../common
45*f808c858Sraf
46fa9e4066SahrensINCS += -I$(SRCDIR)
47fa9e4066SahrensINCS += -I../../../uts/common/fs/zfs
48fa9e4066SahrensINCS += -I../../../common/zfs
49fa9e4066Sahrens
50fa9e4066SahrensC99MODE=	-xc99=%all
51fa9e4066SahrensC99LMODE=	-Xc99=%all
52fa9e4066SahrensLDLIBS +=	-lc -lm -ldevinfo -ldevid -lgen -lnvpair -luutil
53fa9e4066SahrensCPPFLAGS +=	$(INCS) -D_REENTRANT
54fa9e4066Sahrens
55fa9e4066SahrensSRCS=	$(OBJS_COMMON:%.o=$(SRCDIR)/%.c)	\
56fa9e4066Sahrens	$(OBJS_SHARED:%.o=$(SRC)/common/zfs/%.c)
57fa9e4066Sahrens$(LINTLIB) := SRCS=	$(SRCDIR)/$(LINTSRC)
58fa9e4066Sahrens
59fa9e4066Sahrens.KEEP_STATE:
60fa9e4066Sahrens
61fa9e4066Sahrensall: $(LIBS)
62fa9e4066Sahrens
63fa9e4066Sahrenslint: lintcheck
64fa9e4066Sahrens
65fa9e4066Sahrenspics/%.o: ../../../common/zfs/%.c
66fa9e4066Sahrens	$(COMPILE.c) -o $@ $<
67fa9e4066Sahrens	$(POST_PROCESS_O)
68fa9e4066Sahrens
69fa9e4066Sahrensinclude ../../Makefile.targ
70