xref: /titanic_50/usr/src/cmd/zdb/Makefile.com (revision 7014882c6a3672fd0e5d60200af8643ae53c5928)
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
48*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized
49*7014882cSRichard Lowe
50fa9e4066Sahrens# lint complains about unused _umem_* functions
51fa9e4066SahrensLINTFLAGS += -xerroff=E_NAME_DEF_NOT_USED2
52fa9e4066SahrensLINTFLAGS64 += -xerroff=E_NAME_DEF_NOT_USED2
53fa9e4066Sahrens
54fa9e4066Sahrens.KEEP_STATE:
55fa9e4066Sahrens
56fa9e4066Sahrensall: $(PROG)
57fa9e4066Sahrens
5880ab886dSwesolows$(PROG): $(OBJS)
5980ab886dSwesolows	$(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
60fa9e4066Sahrens	$(POST_PROCESS)
61fa9e4066Sahrens
62fa9e4066Sahrensclean:
63fa9e4066Sahrens
64fa9e4066Sahrenslint:	lint_SRCS
65fa9e4066Sahrens
66fa9e4066Sahrensinclude ../../Makefile.targ
6780ab886dSwesolows
6880ab886dSwesolows%.o: ../%.c
6980ab886dSwesolows	$(COMPILE.c) $<
7080ab886dSwesolows	$(POST_PROCESS_O)
71