Merge illumos-gate
[unleashed.git] / usr / src / lib / libshare / nfs / Makefile.com
blob0039c76892e091a15c68fc9389aad64b98026435
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
23 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
25 # Copyright (c) 2018, Joyent, Inc.
27 LIBRARY =       libshare_nfs.a
28 VERS =          .1
29 NFSLIB_DIR      = $(SRC)/cmd/fs.d/nfs/lib
31 LIBOBJS =       libshare_nfs.o
32 OTHOBJS =       nfs_sec.o nfslog_config.o nfslogtab.o smfcfg.o
33 OBJECTS =       $(LIBOBJS) $(OTHOBJS)
35 include ../../../Makefile.lib
37 ROOTLIBDIR =    $(ROOT)/usr/lib/fs/nfs
38 ROOTLIBDIR64 =  $(ROOT)/usr/lib/fs/nfs/$(MACH64)
40 LIBSRCS = $(LIBOBJS:%.o=$(SRCDIR)/%.c)
42 LIBS =          $(DYNLIB)
43 LDLIBS +=       -lshare -lscf -lumem -lc -lxml2
45 #add nfs/lib directory as part of the include path
46 CERRWARN +=     -Wno-parentheses
47 CERRWARN +=     -Wno-switch
48 CERRWARN +=     -Wno-unused-variable
49 CERRWARN +=     -Wno-uninitialized
50 CPPFLAGS +=     -I$(NFSLIB_DIR) \
51                 -I$(ADJUNCT_PROTO)/usr/include/libxml2 -I$(SRCDIR)/../common
53 # not linted
54 SMATCH=off
56 .KEEP_STATE:
58 all: $(LIBS)
60 install: all
62 pics/%.o:  $(NFSLIB_DIR)/%.c
63         $(COMPILE.c) -o $@ $<
64         $(POST_PROCESS_O)
66 include ../../../Makefile.targ