xref: /illumos-gate/usr/src/cmd/zpool/Makefile (revision 18425b35)
1fa9e4066Sahrens#
2fa9e4066Sahrens# CDDL HEADER START
3fa9e4066Sahrens#
4fa9e4066Sahrens# The contents of this file are subject to the terms of the
53bb79becSeschrock# Common Development and Distribution License (the "License").
63bb79becSeschrock# 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#
223f9d6ad7SLin Ling# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23b327cd3fSIgor Kozhukhov# Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>.
24f83b46baSPaul Dagnelie# Copyright (c) 2015 by Delphix. All rights reserved.
25d8ab6e12SDon Brady# Copyright 2020 Joyent, Inc.
26fa9e4066Sahrens#
27fa9e4066Sahrens
28fa9e4066SahrensPROG= zpool
293bb79becSeschrockOBJS= zpool_main.o zpool_vdev.o zpool_iter.o zpool_util.o
30088e9d47SeschrockPOFILES=$(OBJS:%.o=%.po)
31fa9e4066SahrensPOFILE= zpool.po
32fa9e4066Sahrens
33fa9e4066Sahrensinclude ../Makefile.cmd
34*18425b35SToomas Soomeinclude ../Makefile.cmd.64
35e0ad97e3SJonathan Adamsinclude ../Makefile.ctf
36fa9e4066Sahrens
3726fd7700SKrishnendu Sadhukhan - Sun MicrosystemsSTATCOMMONDIR = $(SRC)/cmd/stat/common
3826fd7700SKrishnendu Sadhukhan - Sun Microsystems
3926fd7700SKrishnendu Sadhukhan - Sun MicrosystemsSTAT_COMMON_OBJS = timestamp.o
4026fd7700SKrishnendu Sadhukhan - Sun Microsystems
41dd50e0ccSTony HutterLDLIBS += -lzfs -lnvpair -ldevid -lefi -ldiskmgt -luutil -lumem -lzutil \
42dd50e0ccSTony Hutter	-lm -lzpool
43fa9e4066Sahrens
445711d393SloliINCS += -I../../common/zfs -I../../uts/common/fs/zfs -I$(STATCOMMONDIR)
45d8ab6e12SDon BradyINCS += -I../../lib/libzutil/common
46b7b97454Sperrin
47663207adSDon BradyCSTD=	$(CSTD_GNU99)
48663207adSDon Brady
49*18425b35SToomas SoomeCPPFLAGS += $(INCS)
5029ab75c9Srm$(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
51fa9e4066Sahrens
52fa9e4066SahrensROOTUSRSBINLINKS = $(PROG:%=$(ROOTUSRSBIN)/%)
53fa9e4066Sahrens
54fa9e4066Sahrens.KEEP_STATE:
55fa9e4066Sahrens
56fa9e4066Sahrensall: $(PROG)
57fa9e4066Sahrens
5826fd7700SKrishnendu Sadhukhan - Sun Microsystems$(PROG): $(OBJS) $(STAT_COMMON_OBJS)
5926fd7700SKrishnendu Sadhukhan - Sun Microsystems	$(LINK.c) -o $@ $(OBJS) $(STAT_COMMON_OBJS) $(LDLIBS)
60fa9e4066Sahrens	$(POST_PROCESS)
61fa9e4066Sahrens
6226fd7700SKrishnendu Sadhukhan - Sun Microsystems%.o:    $(STATCOMMONDIR)/%.c
6326fd7700SKrishnendu Sadhukhan - Sun Microsystems	$(COMPILE.c) $<
6426fd7700SKrishnendu Sadhukhan - Sun Microsystems	$(POST_PROCESS_O)
6526fd7700SKrishnendu Sadhukhan - Sun Microsystems
66088e9d47Seschrockinstall: all $(ROOTSBINPROG) $(ROOTUSRSBINLINKS)
67fa9e4066Sahrens
68fa9e4066Sahrens$(POFILE): $(POFILES)
69fa9e4066Sahrens	$(RM) $@
70088e9d47Seschrock	$(CAT) $(POFILES) > $@
71fa9e4066Sahrens
72fa9e4066Sahrensclean:
73a211e62bSKrishnendu Sadhukhan - Sun Microsystems	$(RM) $(OBJS) $(STAT_COMMON_OBJS)
74fa9e4066Sahrens
75fa9e4066Sahrens# Links from /usr/sbin to /sbin
76fa9e4066Sahrens$(ROOTUSRSBINLINKS):
77fa9e4066Sahrens	-$(RM) $@; $(SYMLINK) ../../sbin/$(@F) $@
78fa9e4066Sahrens
79fa9e4066Sahrensinclude ../Makefile.targ
80