1*09fcda9fSToomas Soome#
2*09fcda9fSToomas Soome# This file and its contents are supplied under the terms of the
3*09fcda9fSToomas Soome# Common Development and Distribution License ("CDDL"), version 1.0.
4*09fcda9fSToomas Soome# You may only use this file in accordance with the terms of version
5*09fcda9fSToomas Soome# 1.0 of the CDDL.
6*09fcda9fSToomas Soome#
7*09fcda9fSToomas Soome# A full copy of the text of the CDDL should have accompanied this
8*09fcda9fSToomas Soome# source.  A copy of the CDDL is also available via the Internet at
9*09fcda9fSToomas Soome# http://www.illumos.org/license/CDDL.
10*09fcda9fSToomas Soome#
11*09fcda9fSToomas Soome
12*09fcda9fSToomas Soome#
13*09fcda9fSToomas Soome# Copyright 2020 Toomas Soome <tsoome@me.com>
14*09fcda9fSToomas Soome#
15*09fcda9fSToomas Soome
16*09fcda9fSToomas SoomeLIBRARY=	libzfsbootenv.a
17*09fcda9fSToomas SoomeVERS=		.1
18*09fcda9fSToomas Soome
19*09fcda9fSToomas SoomeOBJECTS=	\
20*09fcda9fSToomas Soome		lzbe_device.o \
21*09fcda9fSToomas Soome		lzbe_pair.o \
22*09fcda9fSToomas Soome		lzbe_util.o
23*09fcda9fSToomas Soome
24*09fcda9fSToomas Soomeinclude ../../Makefile.lib
25*09fcda9fSToomas Soome
26*09fcda9fSToomas SoomeLIBS=		$(DYNLIB)
27*09fcda9fSToomas Soome
28*09fcda9fSToomas SoomeSRCDIR=		../common
29*09fcda9fSToomas Soome
30*09fcda9fSToomas SoomeCSTD=		$(CSTD_GNU99)
31*09fcda9fSToomas Soome
32*09fcda9fSToomas SoomeLDLIBS +=	-lzfs -lnvpair -lc
33*09fcda9fSToomas SoomeCPPFLAGS +=	-I$(SRC)/uts/common/fs/zfs
34*09fcda9fSToomas Soome
35*09fcda9fSToomas Soome
36*09fcda9fSToomas SoomeCLOBBERFILES += $(LIBRARY)
37*09fcda9fSToomas Soome
38*09fcda9fSToomas Soome.KEEP_STATE:
39*09fcda9fSToomas Soome
40*09fcda9fSToomas Soomeall: $(LIBS)
41*09fcda9fSToomas Soome
42*09fcda9fSToomas Soomeinclude ../../Makefile.targ
43