xref: /titanic_41/usr/src/cmd/zdb/Makefile.com (revision fb09f5aad449c97fe309678f3f604982b563a96f)
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.
25*fb09f5aaSMadhav 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)
46*fb09f5aaSMadhav SureshCPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT $(INCS) -DDEBUG
47fa9e4066Sahrens
48fa9e4066Sahrens# lint complains about unused _umem_* functions
49fa9e4066SahrensLINTFLAGS += -xerroff=E_NAME_DEF_NOT_USED2
50fa9e4066SahrensLINTFLAGS64 += -xerroff=E_NAME_DEF_NOT_USED2
51fa9e4066Sahrens
52fa9e4066Sahrens.KEEP_STATE:
53fa9e4066Sahrens
54fa9e4066Sahrensall: $(PROG)
55fa9e4066Sahrens
5680ab886dSwesolows$(PROG): $(OBJS)
5780ab886dSwesolows	$(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
58fa9e4066Sahrens	$(POST_PROCESS)
59fa9e4066Sahrens
60fa9e4066Sahrensclean:
61fa9e4066Sahrens
62fa9e4066Sahrenslint:	lint_SRCS
63fa9e4066Sahrens
64fa9e4066Sahrensinclude ../../Makefile.targ
6580ab886dSwesolows
6680ab886dSwesolows%.o: ../%.c
6780ab886dSwesolows	$(COMPILE.c) $<
6880ab886dSwesolows	$(POST_PROCESS_O)
69