comparison usr/src/lib/libzfs_core/Makefile.com @ 13743:95aba6e49b9f

2882 implement libzfs_core 2883 changing "canmount" property to "on" should not always remount dataset 2900 "zfs snapshot" should be able to create multiple, arbitrary snapshots at once Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: Chris Siden <christopher.siden@delphix.com> Reviewed by: Garrett D'Amore <garrett@damore.org> Reviewed by: Bill Pijewski <wdp@joyent.com> Reviewed by: Dan Kruchinin <dan.kruchinin@gmail.com> Approved by: Eric Schrock <Eric.Schrock@delphix.com>
author Matthew Ahrens <mahrens@delphix.com>
date Sat, 30 Jun 2012 13:00:47 -0700
parents
children
comparison
equal deleted inserted replaced
13742:b6bbdd77139c 13743:95aba6e49b9f
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 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 # Copyright (c) 2012 by Delphix. All rights reserved.
24 #
25
26 LIBRARY= libzfs_core.a
27 VERS= .1
28
29 OBJS_SHARED=
30
31 OBJS_COMMON= \
32 libzfs_core.o
33
34 OBJECTS= $(OBJS_COMMON) $(OBJS_SHARED)
35
36 include ../../Makefile.lib
37
38 # libzfs_core must be installed in the root filesystem for mount(1M)
39 include ../../Makefile.rootfs
40
41 LIBS= $(DYNLIB) $(LINTLIB)
42
43 SRCDIR = ../common
44
45 INCS += -I$(SRCDIR)
46 INCS += -I../../../uts/common/fs/zfs
47 INCS += -I../../../common/zfs
48 INCS += -I../../libc/inc
49
50 C99MODE= -xc99=%all
51 C99LMODE= -Xc99=%all
52 LDLIBS += -lc -lnvpair
53 CPPFLAGS += $(INCS) -D_LARGEFILE64_SOURCE=1 -D_REENTRANT
54
55 SRCS= $(OBJS_COMMON:%.o=$(SRCDIR)/%.c) \
56 $(OBJS_SHARED:%.o=$(SRC)/common/zfs/%.c)
57 $(LINTLIB) := SRCS= $(SRCDIR)/$(LINTSRC)
58
59 .KEEP_STATE:
60
61 all: $(LIBS)
62
63 lint: lintcheck
64
65 pics/%.o: ../../../common/zfs/%.c
66 $(COMPILE.c) -o $@ $<
67 $(POST_PROCESS_O)
68
69 include ../../Makefile.targ