xref: /titanic_51/usr/src/lib/libzpool/Makefile.com (revision 088e9d477eee66081e407fbc5a33c4da25f66f6a)
1fa9e4066Sahrens#
2fa9e4066Sahrens# CDDL HEADER START
3fa9e4066Sahrens#
4fa9e4066Sahrens# The contents of this file are subject to the terms of the
5fa9e4066Sahrens# Common Development and Distribution License, Version 1.0 only
6fa9e4066Sahrens# (the "License").  You may not use this file except in compliance
7fa9e4066Sahrens# with the License.
8fa9e4066Sahrens#
9fa9e4066Sahrens# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10fa9e4066Sahrens# or http://www.opensolaris.org/os/licensing.
11fa9e4066Sahrens# See the License for the specific language governing permissions
12fa9e4066Sahrens# and limitations under the License.
13fa9e4066Sahrens#
14fa9e4066Sahrens# When distributing Covered Code, include this CDDL HEADER in each
15fa9e4066Sahrens# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16fa9e4066Sahrens# If applicable, add the following below this CDDL HEADER, with the
17fa9e4066Sahrens# fields enclosed by brackets "[]" replaced with your own identifying
18fa9e4066Sahrens# information: Portions Copyright [yyyy] [name of copyright owner]
19fa9e4066Sahrens#
20fa9e4066Sahrens# CDDL HEADER END
21fa9e4066Sahrens#
22fa9e4066Sahrens#
23fa9e4066Sahrens# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24fa9e4066Sahrens# Use is subject to license terms.
25fa9e4066Sahrens#
26fa9e4066Sahrens# ident	"%Z%%M%	%I%	%E% SMI"
27fa9e4066Sahrens
28fa9e4066SahrensLIBRARY= libzpool.a
29fa9e4066SahrensVERS= .1
30fa9e4066Sahrens
31*088e9d47Seschrock# include the list of ZFS sources
32fa9e4066Sahrensinclude ../../../uts/common/Makefile.files
33fa9e4066SahrensKERNEL_OBJS = kernel.o taskq.o util.o
34fa9e4066SahrensLIST_OBJS = list.o
35fa9e4066Sahrens
36fa9e4066SahrensOBJECTS=$(ZFS_COMMON_OBJS) $(ZFS_SHARED_OBJS) $(KERNEL_OBJS) $(LIST_OBJS)
37fa9e4066Sahrens
38fa9e4066Sahrens# include library definitions
39fa9e4066Sahrensinclude ../../Makefile.lib
40fa9e4066Sahrens
41fa9e4066SahrensZFS_COMMON_SRCS=	$(ZFS_COMMON_OBJS:%.o=../../../uts/common/fs/zfs/%.c)
42*088e9d47SeschrockZFS_SHARED_SRCS=	$(ZFS_SHARED_OBJS:%.o=../../../common/zfs/%.c)
43fa9e4066SahrensKERNEL_SRCS=		$(KERNEL_OBJS:%.o=../common/%.c)
44fa9e4066SahrensLIST_SRCS=		$(LIST_OBJS:%.o=../../../uts/common/os/%.c)
45fa9e4066Sahrens
46*088e9d47SeschrockSRCS=$(ZFS_COMMON_SRCS) $(ZFS_SHARED_SRCS) $(KERNEL_SRCS) $(LIST_SRCS)
47fa9e4066SahrensSRCDIR=		../common
48fa9e4066Sahrens
49fa9e4066SahrensLIBS +=		$(LINTLIB)
50fa9e4066Sahrens
51fa9e4066SahrensINCS += -I../common
52fa9e4066SahrensINCS += -I../../../uts/common/fs/zfs
53fa9e4066SahrensINCS += -I../../../common/zfs
54fa9e4066Sahrens
55fa9e4066Sahrens$(LINTLIB) := SRCS=	$(SRCDIR)/$(LINTSRC)
56fa9e4066Sahrens
57fa9e4066SahrensC99MODE=	-xc99=%all
58fa9e4066SahrensC99LMODE=	-Xc99=%all
59fa9e4066Sahrens
60fa9e4066SahrensCFLAGS +=	-g $(CCVERBOSE) $(CNOGLOBAL)
61fa9e4066SahrensCFLAGS64 +=	-g $(CCVERBOSE) $(CNOGLOBAL)
62fa9e4066SahrensLDLIBS +=	-lumem -lavl -lnvpair -lc
63fa9e4066SahrensCPPFLAGS +=	$(INCS)
64fa9e4066Sahrens
65fa9e4066Sahrens.KEEP_STATE:
66fa9e4066Sahrens
67fa9e4066Sahrensall: $(LIBS)
68fa9e4066Sahrens
69fa9e4066Sahrenslint: $(LINTLIB)
70fa9e4066Sahrens
71fa9e4066Sahrensinclude ../../Makefile.targ
72fa9e4066Sahrens
73*088e9d47Seschrockpics/%.o: ../../../uts/common/fs/zfs/%.c
74fa9e4066Sahrens	$(COMPILE.c) -o $@ $<
75fa9e4066Sahrens	$(POST_PROCESS_O)
76fa9e4066Sahrens
77*088e9d47Seschrockpics/%.o: ../../../common/zfs/%.c
78fa9e4066Sahrens	$(COMPILE.c) -o $@ $<
79fa9e4066Sahrens	$(POST_PROCESS_O)
80fa9e4066Sahrens
81*088e9d47Seschrockpics/%.o: ../../../uts/common/os/%.c
82fa9e4066Sahrens	$(COMPILE.c) -o $@ $<
83fa9e4066Sahrens	$(POST_PROCESS_O)
84