xref: /titanic_50/usr/src/cmd/zdb/Makefile.com (revision fc30d4661fdf50c4c69dacbc572af35439c28cd8)
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.
26*fc30d466SJason King# Copyright 2017 Joyent, Inc.
27fa9e4066Sahrens#
28fa9e4066Sahrens
29fa9e4066SahrensPROG:sh=	cd ..; basename `pwd`
30fa9e4066SahrensSRCS= ../$(PROG).c ../zdb_il.c
3180ab886dSwesolowsOBJS= $(PROG).o zdb_il.o
32fa9e4066Sahrens
33fa9e4066Sahrensinclude ../../Makefile.cmd
34e0ad97e3SJonathan Adamsinclude ../../Makefile.ctf
35fa9e4066Sahrens
36fa9e4066SahrensINCS += -I../../../lib/libzpool/common
37fa9e4066SahrensINCS +=	-I../../../uts/common/fs/zfs
38b24ab676SJeff BonwickINCS +=	-I../../../common/zfs
39fa9e4066Sahrens
40*fc30d466SJason KingLDLIBS += -lzpool -lumem -lnvpair -lzfs -lavl -lcmdutils
41fa9e4066Sahrens
42fa9e4066SahrensC99MODE=	-xc99=%all
43fa9e4066SahrensC99LMODE=	-Xc99=%all
44fa9e4066Sahrens
45fa9e4066SahrensCFLAGS += $(CCVERBOSE)
46fa9e4066SahrensCFLAGS64 += $(CCVERBOSE)
47fb09f5aaSMadhav SureshCPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT $(INCS) -DDEBUG
48fa9e4066Sahrens
497014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized
507014882cSRichard Lowe
51fa9e4066Sahrens# lint complains about unused _umem_* functions
52fa9e4066SahrensLINTFLAGS += -xerroff=E_NAME_DEF_NOT_USED2
53fa9e4066SahrensLINTFLAGS64 += -xerroff=E_NAME_DEF_NOT_USED2
54fa9e4066Sahrens
55c1379625SJustin T. Gibbs# lint complains about unused inline functions, even though
56c1379625SJustin T. Gibbs# they are "inline", not "static inline", with "extern inline"
57c1379625SJustin T. Gibbs# implementations and usage in libzpool.
58c1379625SJustin T. GibbsLINTFLAGS += -erroff=E_STATIC_UNUSED
59c1379625SJustin T. GibbsLINTFLAGS64 += -erroff=E_STATIC_UNUSED
60c1379625SJustin T. Gibbs
61fa9e4066Sahrens.KEEP_STATE:
62fa9e4066Sahrens
63fa9e4066Sahrensall: $(PROG)
64fa9e4066Sahrens
6580ab886dSwesolows$(PROG): $(OBJS)
6680ab886dSwesolows	$(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
67fa9e4066Sahrens	$(POST_PROCESS)
68fa9e4066Sahrens
69fa9e4066Sahrensclean:
70b6805bf7SGordon Ross	$(RM) $(OBJS)
71fa9e4066Sahrens
72fa9e4066Sahrenslint:	lint_SRCS
73fa9e4066Sahrens
74fa9e4066Sahrensinclude ../../Makefile.targ
7580ab886dSwesolows
7680ab886dSwesolows%.o: ../%.c
7780ab886dSwesolows	$(COMPILE.c) $<
7880ab886dSwesolows	$(POST_PROCESS_O)
79