xref: /titanic_50/usr/src/uts/common/gssapi/Makefile (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate#
2*7c478bd9Sstevel@tonic-gate# CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate#
4*7c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate# with the License.
8*7c478bd9Sstevel@tonic-gate#
9*7c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate# and limitations under the License.
13*7c478bd9Sstevel@tonic-gate#
14*7c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate#
20*7c478bd9Sstevel@tonic-gate# CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate#
22*7c478bd9Sstevel@tonic-gate#
23*7c478bd9Sstevel@tonic-gate# Copyright (c) 1989,1997,1999 by Sun Microsystems, Inc.
24*7c478bd9Sstevel@tonic-gate# All rights reserved.
25*7c478bd9Sstevel@tonic-gate#
26*7c478bd9Sstevel@tonic-gate#pragma ident	"%Z%%M%	%I%	%E% SMI"
27*7c478bd9Sstevel@tonic-gate#
28*7c478bd9Sstevel@tonic-gate# uts/common/gssd/Makefile
29*7c478bd9Sstevel@tonic-gate#
30*7c478bd9Sstevel@tonic-gate# include global definitions
31*7c478bd9Sstevel@tonic-gateinclude ../../../Makefile.master
32*7c478bd9Sstevel@tonic-gate
33*7c478bd9Sstevel@tonic-gate
34*7c478bd9Sstevel@tonic-gateINSTALLED_HDRS=	gssapi.h gssapi_ext.h
35*7c478bd9Sstevel@tonic-gatePRIVATE_HDRS=	gssd.x gssd_prot.h
36*7c478bd9Sstevel@tonic-gateHDRS=	$(INSTALLED_HDRS) $(PRIVATE_HDRS)
37*7c478bd9Sstevel@tonic-gate
38*7c478bd9Sstevel@tonic-gateDERIVED_FILES=	gssd_prot.h gssd_prot.c gssd_xdr.c
39*7c478bd9Sstevel@tonic-gate
40*7c478bd9Sstevel@tonic-gateGSSDDIRS= $(ROOT)/usr/include/gssapi
41*7c478bd9Sstevel@tonic-gate
42*7c478bd9Sstevel@tonic-gateGSSDHDRS= $(INSTALLED_HDRS:%=$(GSSDDIRS)/%)
43*7c478bd9Sstevel@tonic-gate
44*7c478bd9Sstevel@tonic-gateCHECKHDRS= $(INSTALLED_HDRS:%.h=%.check)
45*7c478bd9Sstevel@tonic-gate
46*7c478bd9Sstevel@tonic-gate# gssd_prot.h is rpcgen'ed and can never be made to pass
47*7c478bd9Sstevel@tonic-gate# cstyle so it is unchecked
48*7c478bd9Sstevel@tonic-gateUNCHECKED_HDRS=	gss_prot.h
49*7c478bd9Sstevel@tonic-gate
50*7c478bd9Sstevel@tonic-gate# install rule
51*7c478bd9Sstevel@tonic-gate$(GSSDDIRS)/%: %
52*7c478bd9Sstevel@tonic-gate	$(INS.file)
53*7c478bd9Sstevel@tonic-gate
54*7c478bd9Sstevel@tonic-gate.KEEP_STATE:
55*7c478bd9Sstevel@tonic-gate
56*7c478bd9Sstevel@tonic-gate.PARALLEL: $(CHECKHDRS)
57*7c478bd9Sstevel@tonic-gate
58*7c478bd9Sstevel@tonic-gateinstall_h: all_h $(GSSDDIRS) $(GSSDHDRS)
59*7c478bd9Sstevel@tonic-gate
60*7c478bd9Sstevel@tonic-gateall_h: $(DERIVED_FILES)
61*7c478bd9Sstevel@tonic-gate
62*7c478bd9Sstevel@tonic-gate$(GSSDDIRS):
63*7c478bd9Sstevel@tonic-gate	$(INS.dir)
64*7c478bd9Sstevel@tonic-gate
65*7c478bd9Sstevel@tonic-gategssd_prot.h:	gssd.x
66*7c478bd9Sstevel@tonic-gate	$(RM) $@
67*7c478bd9Sstevel@tonic-gate	$(RPCGEN) -M -h gssd.x > $@
68*7c478bd9Sstevel@tonic-gate
69*7c478bd9Sstevel@tonic-gategssd_prot.c:   gssd.x
70*7c478bd9Sstevel@tonic-gate	$(RM) $@
71*7c478bd9Sstevel@tonic-gate
72*7c478bd9Sstevel@tonic-gate#	Over ticotsord we do zero retries. Over ticlts we do 5
73*7c478bd9Sstevel@tonic-gate#	retries. Hence, a default of 25 seconds for ticotsord is
74*7c478bd9Sstevel@tonic-gate#	too little. 125 = 25 + 6 * MAXTIMO (from clnt_clts.c).
75*7c478bd9Sstevel@tonic-gate#
76*7c478bd9Sstevel@tonic-gate	$(RPCGEN) -M -l gssd.x | sed -e \
77*7c478bd9Sstevel@tonic-gate		's;#include..gssd.h.;#include "gssd_prot.h";' \
78*7c478bd9Sstevel@tonic-gate		| sed 's/TIMEOUT/gssd_timeout/' \
79*7c478bd9Sstevel@tonic-gate		| sed 's/{ 25, 0 }/{ 125, 0 }/' \
80*7c478bd9Sstevel@tonic-gate		| grep -v stdlib.h | grep -v stdio.h > $@
81*7c478bd9Sstevel@tonic-gate
82*7c478bd9Sstevel@tonic-gategssd_xdr.c:    gssd.x
83*7c478bd9Sstevel@tonic-gate	$(RM) $@
84*7c478bd9Sstevel@tonic-gate	$(RPCGEN) -M -c gssd.x | sed -e \
85*7c478bd9Sstevel@tonic-gate		's;#include..gssd.h.;#include "gssd_prot.h";' > $@
86*7c478bd9Sstevel@tonic-gate
87*7c478bd9Sstevel@tonic-gatecheck:	$(CHECKHDRS)
88*7c478bd9Sstevel@tonic-gate
89*7c478bd9Sstevel@tonic-gateclean:
90*7c478bd9Sstevel@tonic-gate	$(RM) $(DERIVED_FILES)
91*7c478bd9Sstevel@tonic-gate
92*7c478bd9Sstevel@tonic-gate# EXPORT DELETE START
93*7c478bd9Sstevel@tonic-gate# Special target to clean up the source tree for export distribution
94*7c478bd9Sstevel@tonic-gate# Warning: This target changes the source tree
95*7c478bd9Sstevel@tonic-gateEXPORT_SRC:
96*7c478bd9Sstevel@tonic-gate	$(RM) Makefile+ gssd.x+ gssd_clnt_stubs.c+
97*7c478bd9Sstevel@tonic-gate	sed -e "/EXPORT DELETE START/,/EXPORT DELETE END/d" \
98*7c478bd9Sstevel@tonic-gate		< gssd.x > gssd.x+
99*7c478bd9Sstevel@tonic-gate	$(MV) gssd.x+ gssd.x
100*7c478bd9Sstevel@tonic-gate	sed -e "/EXPORT DELETE START/,/EXPORT DELETE END/d" \
101*7c478bd9Sstevel@tonic-gate		< gssd_clnt_stubs.c > gssd_clnt_stubs.c+
102*7c478bd9Sstevel@tonic-gate	$(MV) gssd_clnt_stubs.c+ gssd_clnt_stubs.c
103*7c478bd9Sstevel@tonic-gate	sed -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \
104*7c478bd9Sstevel@tonic-gate		< Makefile > Makefile+
105*7c478bd9Sstevel@tonic-gate	$(MV) Makefile+ Makefile
106*7c478bd9Sstevel@tonic-gate	$(CHMOD) 444 Makefile gssd.x gssd_clnt_stubs.c
107*7c478bd9Sstevel@tonic-gate
108*7c478bd9Sstevel@tonic-gate# CRYPT DELETE START
109*7c478bd9Sstevel@tonic-gate# Special target to clean up the source tree for domestic distribution
110*7c478bd9Sstevel@tonic-gate# Warning: This target changes the source tree
111*7c478bd9Sstevel@tonic-gate
112*7c478bd9Sstevel@tonic-gateCRYPT_SRC:
113*7c478bd9Sstevel@tonic-gate	$(RM) Makefile+ gssd_clnt_stubs.c+
114*7c478bd9Sstevel@tonic-gate	sed  -e "/^# CRYPT DELETE START/,/^# CRYPT DELETE END/d" \
115*7c478bd9Sstevel@tonic-gate		< Makefile > Makefile+
116*7c478bd9Sstevel@tonic-gate	$(MV) Makefile+ Makefile
117*7c478bd9Sstevel@tonic-gate	sed -e "/CRYPT DELETE START/,/CRYPT DELETE END/d" \
118*7c478bd9Sstevel@tonic-gate		< gssd_clnt_stubs.c > gssd_clnt_stubs.c+
119*7c478bd9Sstevel@tonic-gate	$(MV) gssd_clnt_stubs.c+ gssd_clnt_stubs.c
120*7c478bd9Sstevel@tonic-gate	$(CHMOD) 444 Makefile gssd_clnt_stubs.c
121*7c478bd9Sstevel@tonic-gate
122*7c478bd9Sstevel@tonic-gate# CRYPT DELETE END
123*7c478bd9Sstevel@tonic-gate# EXPORT DELETE END
124