1fa9e4066Sahrens# 2fa9e4066Sahrens# CDDL HEADER START 3fa9e4066Sahrens# 4fa9e4066Sahrens# The contents of this file are subject to the terms of the 580ab886dSwesolows# Common Development and Distribution License (the "License"). 680ab886dSwesolows# 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# 2180ab886dSwesolows 22fa9e4066Sahrens# 23d6e555bdSGeorge Wilson# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24fa9e4066Sahrens# Use is subject to license terms. 25fb09f5aaSMadhav Suresh# Copyright (c) 2012 by Delphix. All rights reserved. 26fa9e4066Sahrens# 27fa9e4066Sahrens 28fa9e4066SahrensPROG:sh= cd ..; basename `pwd` 29fa9e4066SahrensSRCS= ../$(PROG).c ../zdb_il.c 3080ab886dSwesolowsOBJS= $(PROG).o zdb_il.o 31fa9e4066Sahrens 32fa9e4066Sahrensinclude ../../Makefile.cmd 33e0ad97e3SJonathan Adamsinclude ../../Makefile.ctf 34fa9e4066Sahrens 35fa9e4066SahrensINCS += -I../../../lib/libzpool/common 36fa9e4066SahrensINCS += -I../../../uts/common/fs/zfs 37b24ab676SJeff BonwickINCS += -I../../../common/zfs 38fa9e4066Sahrens 39d6e555bdSGeorge WilsonLDLIBS += -lzpool -lumem -lnvpair -lzfs -lavl 40fa9e4066Sahrens 41fa9e4066SahrensC99MODE= -xc99=%all 42fa9e4066SahrensC99LMODE= -Xc99=%all 43fa9e4066Sahrens 44fa9e4066SahrensCFLAGS += $(CCVERBOSE) 45fa9e4066SahrensCFLAGS64 += $(CCVERBOSE) 46fb09f5aaSMadhav SureshCPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT $(INCS) -DDEBUG 47fa9e4066Sahrens 487014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized 497014882cSRichard Lowe 50fa9e4066Sahrens# lint complains about unused _umem_* functions 51fa9e4066SahrensLINTFLAGS += -xerroff=E_NAME_DEF_NOT_USED2 52fa9e4066SahrensLINTFLAGS64 += -xerroff=E_NAME_DEF_NOT_USED2 53fa9e4066Sahrens 54*8d62b223SJustin T. Gibbs# lint complains about unused inline functions, even though 55*8d62b223SJustin T. Gibbs# they are "inline", not "static inline", with "extern inline" 56*8d62b223SJustin T. Gibbs# implementations and usage in libzpool. 57*8d62b223SJustin T. GibbsLINTFLAGS += -erroff=E_STATIC_UNUSED 58*8d62b223SJustin T. GibbsLINTFLAGS64 += -erroff=E_STATIC_UNUSED 59*8d62b223SJustin T. Gibbs 60fa9e4066Sahrens.KEEP_STATE: 61fa9e4066Sahrens 62fa9e4066Sahrensall: $(PROG) 63fa9e4066Sahrens 6480ab886dSwesolows$(PROG): $(OBJS) 6580ab886dSwesolows $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS) 66fa9e4066Sahrens $(POST_PROCESS) 67fa9e4066Sahrens 68fa9e4066Sahrensclean: 69b6805bf7SGordon Ross $(RM) $(OBJS) 70fa9e4066Sahrens 71fa9e4066Sahrenslint: lint_SRCS 72fa9e4066Sahrens 73fa9e4066Sahrensinclude ../../Makefile.targ 7480ab886dSwesolows 7580ab886dSwesolows%.o: ../%.c 7680ab886dSwesolows $(COMPILE.c) $< 7780ab886dSwesolows $(POST_PROCESS_O) 78