xref: /illumos-gate/usr/src/cmd/ztest/Makefile (revision a0fbb7fb)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23# Copyright (c) 2012, 2016 by Delphix. All rights reserved.
24# Copyright 2017 RackTop Systems.
25# Copyright 2020 Joyent, Inc.
26
27PROG=		ztest
28BASHPROG=	zloop
29ROOTBASHPROG=	$(ROOTBIN)/$(BASHPROG)
30
31CLOBBERFILES=	$(BASHPROG)
32
33OBJS= $(PROG).o
34
35include ../Makefile.cmd
36include ../Makefile.cmd.64
37include ../Makefile.ctf
38
39INCS += -I../../lib/libzpool/common
40INCS += -I../../uts/common/fs/zfs
41INCS += -I../../uts/common/fs/zfs/lua
42INCS += -I../../common/zfs
43INCS += -I../../lib/libzutil/common
44
45LDLIBS += -lumem -lzpool -lcmdutils -lm -lnvpair -lfakekernel -lzutil
46
47CSTD= $(CSTD_GNU99)
48CFLAGS += -g $(CCVERBOSE)
49CFLAGS64 += -g $(CCVERBOSE)
50CPPFLAGS.first = -I$(SRC)/lib/libfakekernel/common -D_FAKE_KERNEL
51CPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT $(INCS) -DDEBUG
52
53CERRWARN += -_gcc=-Wno-switch
54
55# false positive
56SMOFF += signed
57
58# needs work
59SMOFF += all_func_returns
60
61.KEEP_STATE:
62
63all: $(PROG) $(BASHPROG)
64
65install: all $(ROOTPROG) $(ROOTBASHPROG)
66
67$(PROG): $(OBJS)
68	$(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
69	$(POST_PROCESS)
70
71clean:
72	$(RM) $(OBJS)
73
74include ../Makefile.targ
75