Makefile.com (7b1b42816975f5b0069dff7932115ba672ad125c) Makefile.com (36e852a172cba914383d7341c988128b2c667fbd)
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

--- 6 unchanged lines hidden (view full) ---

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#
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

--- 6 unchanged lines hidden (view full) ---

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#
23# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24# Use is subject to license terms.
25#
26
27LIBRARY= libnsl.a
28VERS= .1
29
30# objects are listed by source directory
31

--- 52 unchanged lines hidden (view full) ---

84YP= \
85dbm.o yp_all.o yp_b_clnt.o yp_b_xdr.o yp_bind.o \
86yp_enum.o yp_master.o yp_match.o yp_order.o yp_update.o \
87yperr_string.o yp_xdr.o ypprot_err.o ypupd.o \
88yp_rsvd.o \
89yppasswd_xdr.o
90
91NIS_GEN= \
24# Use is subject to license terms.
25#
26
27LIBRARY= libnsl.a
28VERS= .1
29
30# objects are listed by source directory
31

--- 52 unchanged lines hidden (view full) ---

84YP= \
85dbm.o yp_all.o yp_b_clnt.o yp_b_xdr.o yp_bind.o \
86yp_enum.o yp_master.o yp_match.o yp_order.o yp_update.o \
87yperr_string.o yp_xdr.o ypprot_err.o ypupd.o \
88yp_rsvd.o \
89yppasswd_xdr.o
90
91NIS_GEN= \
92nislib.o nis_callback.o nis_xdr.o nis_subr.o nis_names.o \
93nis_cback_xdr.o print_obj.o nis_perror.o nis_groups.o nis_tags.o \
94nis_misc.o nis_lookup.o nis_rpc.o nis_clnt.o nis_cast.o \
95nis_hash.o nis_misc_proc.o nis_sec_mechs.o npd_lib.o
92nis_xdr.o nis_subr.o nis_misc.o \
93nis_misc_proc.o nis_sec_mechs.o
96
94
97NIS_CACHE= cache.o cache_api.o cold_start.o local_cache.o \
98 mapped_cache.o client_cache.o mgr_cache.o \
99 nis_cache_clnt.o nis_cache_xdr.o
100
95
101NIS= $(NIS_GEN) $(NIS_CACHE)
96NIS= $(NIS_GEN)
102
103KEY= publickey.o xcrypt.o gen_dhkeys.o
104
105OBJECTS= $(COMMON) $(DES) $(DIAL) $(IPSEC) $(NETDIR) $(NSS) $(NETSELECT) \
106 $(NSL) $(WRAPPERS) $(RPC) $(SAF) $(YP) $(NIS) $(KEY)
107
108# libnsl build rules
109pics/%.o: ../common/%.c

--- 43 unchanged lines hidden (view full) ---

153pics/%.o: ../key/%.c
154 $(COMPILE.c) -o $@ $<
155 $(POST_PROCESS_O)
156
157pics/%.o: ../nis/gen/%.c ../nis/gen/nis_clnt.h
158 $(COMPILE.c) -o $@ $<
159 $(POST_PROCESS_O)
160
97
98KEY= publickey.o xcrypt.o gen_dhkeys.o
99
100OBJECTS= $(COMMON) $(DES) $(DIAL) $(IPSEC) $(NETDIR) $(NSS) $(NETSELECT) \
101 $(NSL) $(WRAPPERS) $(RPC) $(SAF) $(YP) $(NIS) $(KEY)
102
103# libnsl build rules
104pics/%.o: ../common/%.c

--- 43 unchanged lines hidden (view full) ---

148pics/%.o: ../key/%.c
149 $(COMPILE.c) -o $@ $<
150 $(POST_PROCESS_O)
151
152pics/%.o: ../nis/gen/%.c ../nis/gen/nis_clnt.h
153 $(COMPILE.c) -o $@ $<
154 $(POST_PROCESS_O)
155
161pics/%.o: ../nis/cache/%.c ../nis/cache/nis_clnt.h
162 $(COMPILE.c) -o $@ $<
163 $(POST_PROCESS_O)
164
156
165pics/%.o: ../nis/cache/%.cc ../nis/gen/nis_clnt.h \
166 ../nis/cache/nis_clnt.h ../nis/cache/nis_cache.h
157pics/%.o: ../nis/gen/nis_clnt.h
167 $(COMPILE.cc) -o $@ $<
168 $(POST_PROCESS_O)
169
170# include library definitions
171include ../../Makefile.lib
172
173# install this library in the root filesystem
174include ../../Makefile.rootfs

--- 69 unchanged lines hidden ---
158 $(COMPILE.cc) -o $@ $<
159 $(POST_PROCESS_O)
160
161# include library definitions
162include ../../Makefile.lib
163
164# install this library in the root filesystem
165include ../../Makefile.rootfs

--- 69 unchanged lines hidden ---