xref: /titanic_51/usr/src/lib/libbe/Makefile.com (revision 6d8cf56720c9453664329fc683b77d5b84e35c89)
1f169c0eaSGlenn Lagasse#
2f169c0eaSGlenn Lagasse# CDDL HEADER START
3f169c0eaSGlenn Lagasse#
4f169c0eaSGlenn Lagasse# The contents of this file are subject to the terms of the
5f169c0eaSGlenn Lagasse# Common Development and Distribution License (the "License").
6f169c0eaSGlenn Lagasse# You may not use this file except in compliance with the License.
7f169c0eaSGlenn Lagasse#
8f169c0eaSGlenn Lagasse# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9f169c0eaSGlenn Lagasse# or http://www.opensolaris.org/os/licensing.
10f169c0eaSGlenn Lagasse# See the License for the specific language governing permissions
11f169c0eaSGlenn Lagasse# and limitations under the License.
12f169c0eaSGlenn Lagasse#
13f169c0eaSGlenn Lagasse# When distributing Covered Code, include this CDDL HEADER in each
14f169c0eaSGlenn Lagasse# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15f169c0eaSGlenn Lagasse# If applicable, add the following below this CDDL HEADER, with the
16f169c0eaSGlenn Lagasse# fields enclosed by brackets "[]" replaced with your own identifying
17f169c0eaSGlenn Lagasse# information: Portions Copyright [yyyy] [name of copyright owner]
18f169c0eaSGlenn Lagasse#
19f169c0eaSGlenn Lagasse# CDDL HEADER END
20f169c0eaSGlenn Lagasse#
21f169c0eaSGlenn Lagasse
22f169c0eaSGlenn Lagasse#
23f169c0eaSGlenn Lagasse# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
24f169c0eaSGlenn Lagasse#
25f5c2e7eaSTheo Schlossnagle# Copyright 2012 OmniTI Computer Consulting, Inc.  All rights reserved.
261a902ef8SHans Rosenfeld# Copyright 2015 Nexenta Systems, Inc. All rights reserved.
27*6d8cf567SToomas Soome# Copyright 2016 Toomas Soome <tsoome@me.com>
286b1d07a4SAlexander Eremin#
296b1d07a4SAlexander Eremin
30f169c0eaSGlenn Lagasse
31f169c0eaSGlenn LagasseLIBRARY=	libbe.a
32f169c0eaSGlenn LagasseVERS=		.1
33f169c0eaSGlenn Lagasse
34f169c0eaSGlenn LagasseOBJECTS=	\
35f169c0eaSGlenn Lagasse		be_activate.o \
36f169c0eaSGlenn Lagasse		be_create.o \
37f169c0eaSGlenn Lagasse		be_list.o \
38f169c0eaSGlenn Lagasse		be_mount.o \
39f169c0eaSGlenn Lagasse		be_rename.o \
40f169c0eaSGlenn Lagasse		be_snapshot.o \
41f169c0eaSGlenn Lagasse		be_utils.o \
42f169c0eaSGlenn Lagasse		be_zones.o
43f169c0eaSGlenn Lagasse
44f169c0eaSGlenn Lagasseinclude ../../Makefile.lib
45f169c0eaSGlenn Lagasse
46f169c0eaSGlenn LagasseLIBS=		$(DYNLIB) $(LINTLIB)
47f169c0eaSGlenn Lagasse
48f169c0eaSGlenn LagasseSRCDIR=		../common
49f169c0eaSGlenn Lagasse
50*6d8cf567SToomas SoomeINCS += -I$(SRCDIR) -I$(SRC)/cmd/boot/common -I$(SRC)/common/ficl
51f169c0eaSGlenn Lagasse
52f169c0eaSGlenn LagasseC99MODE=	$(C99_ENABLE)
53f169c0eaSGlenn Lagasse
54*6d8cf567SToomas SoomeLDLIBS +=	-lficl-sys -lzfs -linstzones -luuid -lnvpair -lc -lgen
55*6d8cf567SToomas SoomeLDLIBS +=	-ldevinfo -lefi
56f169c0eaSGlenn LagasseCPPFLAGS +=	$(INCS)
577014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-label
587014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-uninitialized
597014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-address
60f169c0eaSGlenn Lagasse
61b6805bf7SGordon RossCLOBBERFILES += $(LIBRARY)
62b6805bf7SGordon Ross
63f169c0eaSGlenn Lagasse$(LINTLIB) := SRCS=	$(SRCDIR)/$(LINTSRC)
64f169c0eaSGlenn Lagasse
65f169c0eaSGlenn Lagasse.KEEP_STATE:
66f169c0eaSGlenn Lagasse
67f169c0eaSGlenn Lagasseall: $(LIBS) $(LIBRARY)
68f169c0eaSGlenn Lagasse
69f169c0eaSGlenn Lagasselint: lintcheck
70f169c0eaSGlenn Lagasse
71f169c0eaSGlenn Lagasseinclude ../../Makefile.targ
72