xref: /titanic_52/usr/src/cmd/zpool/Makefile (revision 26fd77009b17f8c8fb32eb362584cfd635e87ad9)
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#
22*26fd7700SKrishnendu Sadhukhan - Sun Microsystems# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23fa9e4066Sahrens# Use is subject to license terms.
24fa9e4066Sahrens#
25fa9e4066Sahrens
26fa9e4066SahrensPROG= zpool
273bb79becSeschrockOBJS= zpool_main.o zpool_vdev.o zpool_iter.o zpool_util.o
28fa9e4066SahrensSRCS= $(OBJS:%.o=%.c)
29088e9d47SeschrockPOFILES=$(OBJS:%.o=%.po)
30fa9e4066SahrensPOFILE= zpool.po
31fa9e4066Sahrens
32fa9e4066Sahrensinclude ../Makefile.cmd
33fa9e4066Sahrens
34*26fd7700SKrishnendu Sadhukhan - Sun MicrosystemsSTATCOMMONDIR = $(SRC)/cmd/stat/common
35*26fd7700SKrishnendu Sadhukhan - Sun Microsystems
36*26fd7700SKrishnendu Sadhukhan - Sun MicrosystemsSTAT_COMMON_OBJS = timestamp.o
37*26fd7700SKrishnendu Sadhukhan - Sun MicrosystemsSTAT_COMMON_SRCS = $(STAT_COMMON_OBJS:%.o=$(STATCOMMONDIR)/%.c)
38*26fd7700SKrishnendu Sadhukhan - Sun MicrosystemsSTAT_COMMON_POFILES = $(STAT_COMMON_OBJS:%.o=%.po)
39*26fd7700SKrishnendu Sadhukhan - Sun MicrosystemsSRCS += $(STAT_COMMON_SRCS)
40*26fd7700SKrishnendu Sadhukhan - Sun MicrosystemsPOFILES += $(STAT_COMMON_POFILES)
41*26fd7700SKrishnendu Sadhukhan - Sun Microsystems
42fa9e4066SahrensLDLIBS += -lzfs -lnvpair -ldevid -lefi -ldiskmgt -luutil -lumem
43fa9e4066Sahrens
44*26fd7700SKrishnendu Sadhukhan - Sun MicrosystemsINCS += -I../../common/zfs -I$(STATCOMMONDIR)
45b7b97454Sperrin
46b7b97454SperrinCPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT $(INCS)
4729ab75c9Srm160521$(NOT_RELEASE_BUILD)CPPFLAGS += -DDEBUG
48fa9e4066Sahrens
49fa9e4066Sahrens# lint complains about unused _umem_* functions
50fa9e4066SahrensLINTFLAGS += -xerroff=E_NAME_DEF_NOT_USED2
51fa9e4066SahrensLINTFLAGS64 += -xerroff=E_NAME_DEF_NOT_USED2
52fa9e4066Sahrens
53fa9e4066SahrensROOTUSRSBINLINKS = $(PROG:%=$(ROOTUSRSBIN)/%)
54fa9e4066Sahrens
55fa9e4066Sahrens.KEEP_STATE:
56fa9e4066Sahrens
57fa9e4066Sahrensall: $(PROG)
58fa9e4066Sahrens
59*26fd7700SKrishnendu Sadhukhan - Sun Microsystems$(PROG): $(OBJS) $(STAT_COMMON_OBJS)
60*26fd7700SKrishnendu Sadhukhan - Sun Microsystems	$(LINK.c) -o $@ $(OBJS) $(STAT_COMMON_OBJS) $(LDLIBS)
61fa9e4066Sahrens	$(POST_PROCESS)
62fa9e4066Sahrens
63*26fd7700SKrishnendu Sadhukhan - Sun Microsystems%.o:    $(STATCOMMONDIR)/%.c
64*26fd7700SKrishnendu Sadhukhan - Sun Microsystems	$(COMPILE.c) $<
65*26fd7700SKrishnendu Sadhukhan - Sun Microsystems	$(POST_PROCESS_O)
66*26fd7700SKrishnendu Sadhukhan - Sun Microsystems
67088e9d47Seschrockinstall: all $(ROOTSBINPROG) $(ROOTUSRSBINLINKS)
68fa9e4066Sahrens
69fa9e4066Sahrens$(POFILE): $(POFILES)
70fa9e4066Sahrens	$(RM) $@
71088e9d47Seschrock	$(CAT) $(POFILES) > $@
72fa9e4066Sahrens
73*26fd7700SKrishnendu Sadhukhan - Sun Microsystems%.po: $(STATCOMMONDIR)/%.c
74*26fd7700SKrishnendu Sadhukhan - Sun Microsystems	$(COMPILE.cpp) $< > $<.i
75*26fd7700SKrishnendu Sadhukhan - Sun Microsystems	$(BUILD.po)
76*26fd7700SKrishnendu Sadhukhan - Sun Microsystems
77fa9e4066Sahrensclean:
78fa9e4066Sahrens	$(RM) $(OBJS)
79fa9e4066Sahrens
80fa9e4066Sahrenslint:	lint_SRCS
81fa9e4066Sahrens
82fa9e4066Sahrens# Links from /usr/sbin to /sbin
83fa9e4066Sahrens$(ROOTUSRSBINLINKS):
84fa9e4066Sahrens	-$(RM) $@; $(SYMLINK) ../../sbin/$(@F) $@
85fa9e4066Sahrens
86fa9e4066Sahrensinclude ../Makefile.targ
87