xref: /titanic_44/usr/src/cmd/ztest/Makefile.com (revision c1379625401dfbe1c39b79136dd384a571d47fde)
1fa9e4066Sahrens#
2fa9e4066Sahrens# CDDL HEADER START
3fa9e4066Sahrens#
4fa9e4066Sahrens# The contents of this file are subject to the terms of the
5e0ad97e3SJonathan Adams# Common Development and Distribution License (the "License").
6e0ad97e3SJonathan Adams# 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#
21fa9e4066Sahrens#
223c112a2bSEric Taylor# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23ad135b5dSChristopher Siden# Copyright (c) 2012 by Delphix. All rights reserved.
24fa9e4066Sahrens#
25fa9e4066Sahrens
26fa9e4066SahrensPROG= ztest
27e0ad97e3SJonathan AdamsOBJS= $(PROG).o
28e0ad97e3SJonathan AdamsSRCS= $(OBJS:%.o=../%.c)
29fa9e4066Sahrens
30fa9e4066Sahrensinclude ../../Makefile.cmd
31e0ad97e3SJonathan Adamsinclude ../../Makefile.ctf
32fa9e4066Sahrens
33fa9e4066SahrensINCS += -I../../../lib/libzpool/common
34fa9e4066SahrensINCS += -I../../../uts/common/fs/zfs
35ad135b5dSChristopher SidenINCS += -I../../../common/zfs
36fa9e4066Sahrens
373c112a2bSEric TaylorLDLIBS += -lumem -lzpool -lcmdutils -lm -lnvpair
38fa9e4066Sahrens
39fa9e4066SahrensC99MODE= -xc99=%all
40fa9e4066SahrensC99LMODE= -Xc99=%all
41fa9e4066SahrensCFLAGS += -g $(CCVERBOSE)
42fa9e4066SahrensCFLAGS64 += -g $(CCVERBOSE)
43fb09f5aaSMadhav SureshCPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT $(INCS) -DDEBUG
44fa9e4066Sahrens
45fa9e4066Sahrens# lint complains about unused _umem_* functions
46fa9e4066SahrensLINTFLAGS += -xerroff=E_NAME_DEF_NOT_USED2
47fa9e4066SahrensLINTFLAGS64 += -xerroff=E_NAME_DEF_NOT_USED2
48fa9e4066Sahrens
49*c1379625SJustin T. Gibbs# lint complains about unused inline functions, even though
50*c1379625SJustin T. Gibbs# they are "inline", not "static inline", with "extern inline"
51*c1379625SJustin T. Gibbs# implementations and usage in libzpool.
52*c1379625SJustin T. GibbsLINTFLAGS += -erroff=E_STATIC_UNUSED
53*c1379625SJustin T. GibbsLINTFLAGS64 += -erroff=E_STATIC_UNUSED
54*c1379625SJustin T. Gibbs
557014882cSRichard LoweCERRWARN += -_gcc=-Wno-switch
567014882cSRichard Lowe
57fa9e4066Sahrens.KEEP_STATE:
58fa9e4066Sahrens
59fa9e4066Sahrensall: $(PROG)
60fa9e4066Sahrens
61e0ad97e3SJonathan Adams$(PROG): $(OBJS)
62e0ad97e3SJonathan Adams	$(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
63fa9e4066Sahrens	$(POST_PROCESS)
64fa9e4066Sahrens
65fa9e4066Sahrensclean:
66b6805bf7SGordon Ross	$(RM) $(OBJS)
67fa9e4066Sahrens
68fa9e4066Sahrenslint:	lint_SRCS
69fa9e4066Sahrens
70fa9e4066Sahrensinclude ../../Makefile.targ
71e0ad97e3SJonathan Adams
72e0ad97e3SJonathan Adams%.o: ../%.c
73e0ad97e3SJonathan Adams	$(COMPILE.c) $<
74e0ad97e3SJonathan Adams	$(POST_PROCESS_O)
75