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 by Delphix. All rights reserved. 24# 25 26LIBRARY= libzpool.a 27VERS= .1 28 29# include the list of ZFS sources 30include ../../../uts/common/Makefile.files 31KERNEL_OBJS = kernel.o taskq.o util.o 32 33OBJECTS=$(ZFS_COMMON_OBJS) $(ZFS_SHARED_OBJS) $(KERNEL_OBJS) 34 35# include library definitions 36include ../../Makefile.lib 37 38ZFS_COMMON_SRCS= $(ZFS_COMMON_OBJS:%.o=../../../uts/common/fs/zfs/%.c) 39ZFS_SHARED_SRCS= $(ZFS_SHARED_OBJS:%.o=../../../common/zfs/%.c) 40KERNEL_SRCS= $(KERNEL_OBJS:%.o=../common/%.c) 41 42SRCS=$(ZFS_COMMON_SRCS) $(ZFS_SHARED_SRCS) $(KERNEL_SRCS) 43SRCDIR= ../common 44 45# There should be a mapfile here 46MAPFILES = 47 48LIBS += $(LINTLIB) 49 50INCS += -I../common 51INCS += -I../../../uts/common/fs/zfs 52INCS += -I../../../common/zfs 53INCS += -I../../../common 54 55$(LINTLIB) := SRCS= $(SRCDIR)/$(LINTSRC) 56 57C99MODE= -xc99=%all 58C99LMODE= -Xc99=%all 59 60CFLAGS += -g $(CCVERBOSE) $(CNOGLOBAL) 61CFLAGS64 += -g $(CCVERBOSE) $(CNOGLOBAL) 62LDLIBS += -lcmdutils -lumem -lavl -lnvpair -lz -lc -lsysevent -lmd 63CPPFLAGS += $(INCS) -DDEBUG 64 65CERRWARN += -_gcc=-Wno-parentheses 66CERRWARN += -_gcc=-Wno-switch 67CERRWARN += -_gcc=-Wno-type-limits 68CERRWARN += -_gcc=-Wno-unused-variable 69CERRWARN += -_gcc=-Wno-uninitialized 70CERRWARN += -_gcc=-Wno-empty-body 71CERRWARN += -_gcc=-Wno-unused-function 72CERRWARN += -_gcc=-Wno-unused-label 73 74.KEEP_STATE: 75 76all: $(LIBS) 77 78lint: $(LINTLIB) 79 80include ../../Makefile.targ 81 82pics/%.o: ../../../uts/common/fs/zfs/%.c 83 $(COMPILE.c) -o $@ $< 84 $(POST_PROCESS_O) 85 86pics/%.o: ../../../common/zfs/%.c 87 $(COMPILE.c) -o $@ $< 88 $(POST_PROCESS_O) 89