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
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 2006 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# ident	"%Z%%M%	%I%	%E% SMI"
26#
27
28PROG=		finger rdate ruptime rwho whois
29SUIDPROG=	rcp rlogin rsh
30ALL=		$(PROG) $(SUIDPROG)
31SRCS=		$(ALL:%=%.c)
32KCMDPROGS=	rcp rlogin rsh
33
34SUBDIRS=	chat ftp nca netstat pppd pppdump pppstats rdist talk tftp telnet
35SUBDIR1=	talk
36MSGSUBDIRS=	nca talk
37
38# As programs get lint-clean, add them here.  Eventually.
39# This hack should go away, and all in PROG should be lint-clean.
40LINTCLEAN=	rlogin.c rsh.c rcp.c rdate.c rwho.c
41
42# Likewise, as subdirs get lint-clean, add them here.  Once
43# they're all clean, replace the dependency of the lint target
44# with SUBDIRS.  Also (sigh) deal with the commented-out build lines
45# for the lint rule.
46LINTSUBDIRS=	nca netstat pppd pppstats tftp
47
48include ../../Makefile.cmd
49include ../Makefile.cmd-inet
50
51COMMONOBJS=	kcmd.o
52COMMONPOFILES=	$(COMMONOBJS:.o=.po)
53COMMONSRCS=	$(CMDINETCOMMONDIR)/$(COMMONOBJS:.o=.c)
54
55POFILES=	rlogin.po rsh.po rcp.po $(COMMONPOFILES)
56POFILE=		usr.bin.po
57
58all:=		TARGET= all
59install:=	TARGET= install
60clean:=		TARGET= clean
61clobber:=	TARGET= clobber
62lint:=		TARGET= lint
63_msg:=		TARGET= _msg
64
65ROOTSUIDPROG=	$(SUIDPROG:%=$(ROOTBIN)/%)
66$(ROOTSUIDPROG)	:=	FILEMODE=	04555
67$(ROOTSUIDPROG)	:=	OWNER=		root
68
69CPPFLAGS +=	-DSYSV -DSTRNET -DBSD_COMP -I$(CMDINETCOMMONDIR)
70
71# Eventually just plain CFLAGS should be += -v, but not until all in
72# PROGS are lint clean.
73$(LINTCLEAN)	:=	CFLAGS += $(CCVERBOSE)
74
75finger :=	CFLAGS += $(CCVERBOSE)
76# Enable large file support for reading the lastlog file.
77finger :=	CPPFLAGS += -D_FILE_OFFSET_BITS=64
78
79finger :=		LDLIBS += -lnsl -lcurses -lsocket
80rcp lint-rcp :=		LDLIBS += -lsocket -lsec -lsendfile
81rdate lint-rdate:=	LDLIBS += -lsocket
82rlogin lint-rlogin :=	LDLIBS += -lnsl -lsocket
83rsh lint-rsh :=		LDLIBS += -lsocket
84whois :=		LDLIBS += -lnsl -lsocket
85
86include  $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
87$(KCMDPROGS)	:=	LDLIBS += -lnsl -lmech_krb5
88$(KCMDPROGS)	:=	LDFLAGS += $(ZIGNORE) $(ZLAZYLOAD) $(KRUNPATH) \
89				-L$(ROOT)$(KLIBDIR_DO) \
90				-L$(ROOT)$(KLIBDIR_GL)
91KCMDLINTS=	$(KCMDPROGS:%=lint-%)
92
93$(COMMONPOFILES) \
94rlogin.po rcp.po rsh.po \
95$(KCMDPROGS) \
96$(KCMDLINTS)	:=	CPPFLAGS += -DKERBEROS \
97			-I$(CMDINETCOMMONDIR) \
98			-I$(SRC)/lib/gss_mechs/mech_krb5 \
99			-I$(SRC)/uts/common/gssapi/mechs/krb5/include \
100			-I$(SRC)/lib/gss_mechs/mech_krb5/include \
101			-I$(SRC)/lib/gss_mechs/mech_krb5/include/krb5
102
103# "-erroff=E_NAME_USED_NOT_DEF2" and "-erroff=E_NAME_DEF_NOT_USED2"
104# are required because lint problems in the Kerberos 5 framework.
105$(KCMDLINTS)	:=	LINTFLAGS += -lnsl \
106			-erroff=E_NAME_USED_NOT_DEF2 \
107			-erroff=E_NAME_DEF_NOT_USED2
108
109# Extra source files to lint with
110LINTXTRA=
111$(KCMDLINTS)	:=	LINTXTRA += $(COMMONSRCS)
112
113ROOTSUNWRCP=	$(ROOT)/usr/lib/sunw,rcp
114ROOTRSHSYMLINK=	$(ROOT)/usr/ucb/rsh
115ROOTREMSHSYMLINK=$(ROOT)/usr/bin/remsh
116
117.KEEP_STATE:
118
119all: $(ALL) $(SUBDIRS)
120
121install: all .WAIT $(ROOTPROG) $(ROOTSUIDPROG) \
122	$(SUBDIRS) $(ROOTSUNWRCP) $(ROOTRSHSYMLINK) $(ROOTREMSHSYMLINK)
123
124# Messaging - copy $POFILES to $POFILE to work with the parent directory
125# Makefile's '_msg' target.
126#
127_msg: $(MSGSUBDIRS) $(POFILES)
128	$(RM) $(POFILE)
129	$(CAT) $(POFILES)	> $(POFILE)
130
131$(COMMONPOFILES): $(COMMONSRCS)
132	$(COMPILE.cpp) $(COMMONSRCS) > $(@:.po=.c).i
133	$(XGETTEXT) $(XGETFLAGS) $(@:.po=.c).i
134	$(RM) $@
135	sed "/^domain/d" < messages.po  > $@
136	$(RM) messages.po $(@:.po=.c).i
137
138$(COMMONOBJS): $(COMMONSRCS)
139	$(COMPILE.c) $(COMMONSRCS)
140
141rlogin: rlogin.o $(COMMONOBJS)
142	$(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS)
143	$(POST_PROCESS)
144
145rcp: rcp.o $(COMMONOBJS)
146	$(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS)
147	$(POST_PROCESS)
148
149rsh: rsh.o $(COMMONOBJS)
150	$(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS)
151	$(POST_PROCESS)
152
153$(ROOTSUNWRCP):
154	$(RM) $@; $(SYMLINK) ../bin/rcp $@
155
156$(ROOTRSHSYMLINK):
157	$(RM) $@; $(SYMLINK) ../bin/rsh $@
158
159$(ROOTREMSHSYMLINK):
160	$(RM) $@; $(SYMLINK) rsh $@
161
162$(SUBDIRS): FRC
163	@cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET)
164
165FRC:
166
167clean: $(SUBDIRS)
168
169clobber: $(SUBDIRS) clobber_local
170
171clobber_local:
172	echo $(CLOBBERFILES)
173	$(RM) $(ALL)  $(CLOBBERFILES)
174
175
176LINTLOCALS=	$(LINTCLEAN:%.c=lint-%)
177
178lint:	$(LINTSUBDIRS) $(LINTLOCALS)
179
180$(LINTLOCALS):
181	$(LINT.c) $(@:lint-%=%.c) $(LINTXTRA) $(LDLIBS)
182