6253 F_GETLK doesn't always return lock owner
[illumos-gate.git] / usr / src / uts / sparc / cachefs / Makefile
blob730d536ca2eecd766c48b87f3a4f8ea8a1b6725f
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # uts/sparc/cachefs/Makefile
23 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 # Copyright (c) 2011 Bayard G. Bell. All rights reserved.
27 # This makefile drives the production of the Cache file system
28 # kernel module.
30 # sparc implementation architecture dependent
34 # Path to the base of the uts directory tree (usually /usr/src/uts).
36 UTSBASE = ../..
39 # Define the module and object file sets.
41 MODULE = cachefs
42 OBJECTS = $(CACHEFS_OBJS:%=$(OBJS_DIR)/%)
43 LINTS = $(CACHEFS_OBJS:%.o=$(LINTS_DIR)/%.ln)
44 ROOTMODULE = $(ROOT_FS_DIR)/$(MODULE)
47 # Include common rules.
49 include $(UTSBASE)/sparc/Makefile.sparc
52 # Define targets
54 ALL_TARGET = $(BINARY)
55 LINT_TARGET = $(MODULE).lint
56 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
59 # Overrides.
61 CFLAGS += $(CCVERBOSE)
64 # Define dependency on rpcmod
66 LDFLAGS += -dy -N strmod/rpcmod
69 # For now, disable these lint checks; maintainers should endeavor
70 # to investigate and remove these for maximum lint coverage.
71 # Please do not carry these forward to new Makefiles.
73 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
74 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
75 LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
76 LINTTAGS += -erroff=E_STATIC_UNUSED
77 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
78 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
80 CERRWARN += -_gcc=-Wno-parentheses
81 CERRWARN += -_gcc=-Wno-uninitialized
84 # Default build targets.
86 .KEEP_STATE:
88 def: $(DEF_DEPS)
90 all: $(ALL_DEPS)
92 clean: $(CLEAN_DEPS)
94 clobber: $(CLOBBER_DEPS)
96 lint: $(LINT_DEPS)
98 modlintlib: $(MODLINTLIB_DEPS)
100 clean.lint: $(CLEAN_LINT_DEPS)
102 install: $(INSTALL_DEPS)
105 # Include common targets.
107 include $(UTSBASE)/sparc/Makefile.targ