xref: /titanic_52/usr/src/lib/libzpool/Makefile.com (revision be6fd75a69ae679453d9cda5bff3326111e6d1ca)
1fa9e4066Sahrens#
2fa9e4066Sahrens# CDDL HEADER START
3fa9e4066Sahrens#
4fa9e4066Sahrens# The contents of this file are subject to the terms of the
5f808c858Sraf# Common Development and Distribution License (the "License").
6f808c858Sraf# 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.
23*be6fd75aSMatthew Ahrens# Copyright (c) 2013 by Delphix. All rights reserved.
24fa9e4066Sahrens#
25fa9e4066Sahrens
26fa9e4066SahrensLIBRARY= libzpool.a
27fa9e4066SahrensVERS= .1
28fa9e4066Sahrens
29088e9d47Seschrock# include the list of ZFS sources
30fa9e4066Sahrensinclude ../../../uts/common/Makefile.files
31fa9e4066SahrensKERNEL_OBJS = kernel.o taskq.o util.o
32*be6fd75aSMatthew AhrensDTRACE_OBJS = zfs.o
33fa9e4066Sahrens
343c112a2bSEric TaylorOBJECTS=$(ZFS_COMMON_OBJS) $(ZFS_SHARED_OBJS) $(KERNEL_OBJS)
35fa9e4066Sahrens
36fa9e4066Sahrens# include library definitions
37fa9e4066Sahrensinclude ../../Makefile.lib
38fa9e4066Sahrens
39fa9e4066SahrensZFS_COMMON_SRCS=	$(ZFS_COMMON_OBJS:%.o=../../../uts/common/fs/zfs/%.c)
40088e9d47SeschrockZFS_SHARED_SRCS=	$(ZFS_SHARED_OBJS:%.o=../../../common/zfs/%.c)
41fa9e4066SahrensKERNEL_SRCS=		$(KERNEL_OBJS:%.o=../common/%.c)
42fa9e4066Sahrens
433c112a2bSEric TaylorSRCS=$(ZFS_COMMON_SRCS) $(ZFS_SHARED_SRCS) $(KERNEL_SRCS)
44fa9e4066SahrensSRCDIR=		../common
45fa9e4066Sahrens
46f808c858Sraf# There should be a mapfile here
47f808c858SrafMAPFILES =
48f808c858Sraf
49fa9e4066SahrensLIBS +=		$(LINTLIB)
50fa9e4066Sahrens
51fa9e4066SahrensINCS += -I../common
52fa9e4066SahrensINCS += -I../../../uts/common/fs/zfs
53fa9e4066SahrensINCS += -I../../../common/zfs
54ecd6cf80SmarksINCS += -I../../../common
55fa9e4066Sahrens
56*be6fd75aSMatthew AhrensCLEANFILES += ../common/zfs.h
57*be6fd75aSMatthew Ahrens
58fa9e4066Sahrens$(LINTLIB) := SRCS=	$(SRCDIR)/$(LINTSRC)
59*be6fd75aSMatthew Ahrens$(LINTLIB): ../common/zfs.h
60fa9e4066Sahrens
61fa9e4066SahrensC99MODE=	-xc99=%all
62fa9e4066SahrensC99LMODE=	-Xc99=%all
63fa9e4066Sahrens
64fa9e4066SahrensCFLAGS +=	-g $(CCVERBOSE) $(CNOGLOBAL)
65fa9e4066SahrensCFLAGS64 +=	-g $(CCVERBOSE)	$(CNOGLOBAL)
663c112a2bSEric TaylorLDLIBS +=	-lcmdutils -lumem -lavl -lnvpair -lz -lc -lsysevent -lmd
67fb09f5aaSMadhav SureshCPPFLAGS +=	$(INCS)	-DDEBUG
68fa9e4066Sahrens
697014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-parentheses
707014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-switch
717014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-type-limits
727014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-variable
737014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-uninitialized
747014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-empty-body
757014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-function
767014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-label
777014882cSRichard Lowe
78fa9e4066Sahrens.KEEP_STATE:
79fa9e4066Sahrens
80fa9e4066Sahrensall: $(LIBS)
81fa9e4066Sahrens
82fa9e4066Sahrenslint: $(LINTLIB)
83fa9e4066Sahrens
84fa9e4066Sahrensinclude ../../Makefile.targ
85fa9e4066Sahrens
86*be6fd75aSMatthew AhrensEXTPICS= $(DTRACE_OBJS:%=pics/%)
87*be6fd75aSMatthew Ahrens
88*be6fd75aSMatthew Ahrenspics/%.o: ../../../uts/common/fs/zfs/%.c ../common/zfs.h
89fa9e4066Sahrens	$(COMPILE.c) -o $@ $<
90fa9e4066Sahrens	$(POST_PROCESS_O)
91fa9e4066Sahrens
92*be6fd75aSMatthew Ahrenspics/%.o: ../../../common/zfs/%.c ../common/zfs.h
93fa9e4066Sahrens	$(COMPILE.c) -o $@ $<
94fa9e4066Sahrens	$(POST_PROCESS_O)
95*be6fd75aSMatthew Ahrens
96*be6fd75aSMatthew Ahrenspics/%.o: ../common/%.d $(PICS)
97*be6fd75aSMatthew Ahrens	$(COMPILE.d) -C -s $< -o $@ $(PICS)
98*be6fd75aSMatthew Ahrens	$(POST_PROCESS_O)
99*be6fd75aSMatthew Ahrens
100*be6fd75aSMatthew Ahrens../common/%.h: ../common/%.d
101*be6fd75aSMatthew Ahrens	$(DTRACE) -xnolibs -h -s $< -o $@
102