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 2008 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 # ident "%Z%%M% %I% %E% SMI"
26 #
27
28 LIBRARY = libnss_files.a
29 VERS = .1
30
31 OBJECTS = bootparams_getbyname.o \
32 ether_addr.o \
33 files_common.o \
34 getgrent.o \
35 gethostent.o \
36 gethostent6.o \
37 getnetent.o \
38 getprojent.o \
39 getprotoent.o \
40 getpwnam.o \
41 getrpcent.o \
42 getprinter.o \
43 getservent.o \
44 getspent.o \
45 getauthattr.o \
46 getprofattr.o \
47 getexecattr.o \
48 getuserattr.o \
49 getauuser.o \
50 netmasks.o \
51 tsol_getrhent.o \
52 tsol_gettpent.o
53
54 # include common nsswitch library definitions.
55 include ../../Makefile.com
56
57 # install this library in the root filesystem
58 include ../../../Makefile.rootfs
59
60 CPPFLAGS += -I../../../common/inc
61 LINTFLAGS += -erroff=E_GLOBAL_COULD_BE_STATIC2
62 LINTFLAGS64 += -erroff=E_GLOBAL_COULD_BE_STATIC2
63
64 LDLIBS += -lsocket -lnsl
65 DYNLIB1 = nss_files.so$(VERS)
66
67 all: $(DYNLIB1)
|
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 2008 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 # Copyright 2012 Nexenta Systems, Inc. All rights reserved.
26 #
27
28 LIBRARY = libnss_files.a
29 VERS = .1
30
31 OBJECTS = bootparams_getbyname.o \
32 ether_addr.o \
33 files_common.o \
34 getgrent.o \
35 getnetgrent.o \
36 gethostent.o \
37 gethostent6.o \
38 getnetent.o \
39 getprojent.o \
40 getprotoent.o \
41 getpwnam.o \
42 getrpcent.o \
43 getprinter.o \
44 getservent.o \
45 getspent.o \
46 getauthattr.o \
47 getprofattr.o \
48 getexecattr.o \
49 getuserattr.o \
50 getauuser.o \
51 netmasks.o \
52 tsol_getrhent.o \
53 tsol_gettpent.o
54
55 # include common nsswitch library definitions.
56 include ../../Makefile.com
57
58 # install this library in the root filesystem
59 include ../../../Makefile.rootfs
60
61 CPPFLAGS += -I../../../common/inc
62 LINTFLAGS += -erroff=E_GLOBAL_COULD_BE_STATIC2
63 LINTFLAGS64 += -erroff=E_GLOBAL_COULD_BE_STATIC2
64
65 LDLIBS += -lsocket -lnsl -lrevnetgroup
66 DYNLIB1 = nss_files.so$(VERS)
67
68 all: $(DYNLIB1)
|