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