17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
569bb4bb4Scarlsonj# Common Development and Distribution License (the "License").
669bb4bb4Scarlsonj# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
2106e1a714Sraf#
2224fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate# Use is subject to license terms.
247c478bd9Sstevel@tonic-gate#
251dd3983cSYuri Pankov# Copyright 2011 Nexenta Systems, Inc. All rights reserved.
265ffb0c9bSToomas Soome# Copyright 2016 Toomas Soome <tsoome@me.com>
275661bb76SJohn Levon# Copyright (c) 2018, Joyent, Inc.
281dd3983cSYuri Pankov#
297c478bd9Sstevel@tonic-gate
305ffb0c9bSToomas SoomePROG=		finger rdate ruptime rwho whois
317c478bd9Sstevel@tonic-gateSUIDPROG=	rcp rlogin rsh
327c478bd9Sstevel@tonic-gateALL=		$(PROG) $(SUIDPROG)
337c478bd9Sstevel@tonic-gateSRCS=		$(ALL:%=%.c)
347c478bd9Sstevel@tonic-gateKCMDPROGS=	rcp rlogin rsh
357c478bd9Sstevel@tonic-gate
365ffb0c9bSToomas SoomeSUBDIRS=	chat dns-sd ftp nc nca netstat \
3703100a63Svk		pppd pppdump pppstats rdist talk telnet tftp
385661bb76SJohn LevonSUBDIR1=	talk
397c478bd9Sstevel@tonic-gateMSGSUBDIRS=	nca talk
407c478bd9Sstevel@tonic-gate
417c478bd9Sstevel@tonic-gate# As programs get lint-clean, add them here.  Eventually.
427c478bd9Sstevel@tonic-gate# This hack should go away, and all in PROG should be lint-clean.
431dd3983cSYuri PankovLINTCLEAN=	rlogin.c rsh.c rcp.c rdate.c rwho.c whois.c
447c478bd9Sstevel@tonic-gate
457c478bd9Sstevel@tonic-gate# Likewise, as subdirs get lint-clean, add them here.  Once
467c478bd9Sstevel@tonic-gate# they're all clean, replace the dependency of the lint target
477c478bd9Sstevel@tonic-gate# with SUBDIRS.  Also (sigh) deal with the commented-out build lines
487c478bd9Sstevel@tonic-gate# for the lint rule.
4969bb4bb4ScarlsonjLINTSUBDIRS=	nca netstat pppd pppstats tftp
507c478bd9Sstevel@tonic-gate
517c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd
527c478bd9Sstevel@tonic-gateinclude ../Makefile.cmd-inet
537c478bd9Sstevel@tonic-gate
547c478bd9Sstevel@tonic-gateCOMMONOBJS=	kcmd.o
557c478bd9Sstevel@tonic-gateCOMMONPOFILES=	$(COMMONOBJS:.o=.po)
567c478bd9Sstevel@tonic-gateCOMMONSRCS=	$(CMDINETCOMMONDIR)/$(COMMONOBJS:.o=.c)
577c478bd9Sstevel@tonic-gate
587c478bd9Sstevel@tonic-gatePOFILES=	rlogin.po rsh.po rcp.po $(COMMONPOFILES)
597c478bd9Sstevel@tonic-gatePOFILE=		usr.bin.po
607c478bd9Sstevel@tonic-gate
61b6805bf7SGordon RossCLOBBERFILES +=	$(ALL)
62b6805bf7SGordon RossCLEANFILES +=	kcmd.o rcp.o rlogin.o rsh.o
63b6805bf7SGordon Ross
647c478bd9Sstevel@tonic-gateall:=		TARGET= all
657c478bd9Sstevel@tonic-gateinstall:=	TARGET= install
667c478bd9Sstevel@tonic-gateclean:=		TARGET= clean
677c478bd9Sstevel@tonic-gateclobber:=	TARGET= clobber
687c478bd9Sstevel@tonic-gatelint:=		TARGET= lint
697c478bd9Sstevel@tonic-gate_msg:=		TARGET= _msg
707c478bd9Sstevel@tonic-gate
717c478bd9Sstevel@tonic-gateROOTSUIDPROG=	$(SUIDPROG:%=$(ROOTBIN)/%)
727c478bd9Sstevel@tonic-gate$(ROOTSUIDPROG)	:=	FILEMODE=	04555
737c478bd9Sstevel@tonic-gate
747c478bd9Sstevel@tonic-gateCPPFLAGS +=	-DSYSV -DSTRNET -DBSD_COMP -I$(CMDINETCOMMONDIR)
757014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-parentheses
76*d3b5f563SJohn LevonCERRWARN +=	$(CNOWARN_UNINIT)
777014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-function
787c478bd9Sstevel@tonic-gate
795661bb76SJohn Levonruptime :=     SMOFF += leaks
805661bb76SJohn Levon
817c478bd9Sstevel@tonic-gate# Eventually just plain CFLAGS should be += -v, but not until all in
827c478bd9Sstevel@tonic-gate# PROGS are lint clean.
837c478bd9Sstevel@tonic-gate$(LINTCLEAN)	:=	CFLAGS += $(CCVERBOSE)
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gatefinger :=	CFLAGS += $(CCVERBOSE)
867c478bd9Sstevel@tonic-gate# Enable large file support for reading the lastlog file.
877c478bd9Sstevel@tonic-gatefinger :=	CPPFLAGS += -D_FILE_OFFSET_BITS=64
887c478bd9Sstevel@tonic-gate
8906e1a714Sraffinger :=		LDLIBS += -lnsl -lcurses -lsocket
907c478bd9Sstevel@tonic-gatercp lint-rcp :=		LDLIBS += -lsocket -lsec -lsendfile
917c478bd9Sstevel@tonic-gaterdate lint-rdate:=	LDLIBS += -lsocket
927c478bd9Sstevel@tonic-gaterlogin lint-rlogin :=	LDLIBS += -lnsl -lsocket
937c478bd9Sstevel@tonic-gatersh lint-rsh :=		LDLIBS += -lsocket
941dd3983cSYuri Pankovwhois lint-whois :=	LDLIBS += -lsocket
957c478bd9Sstevel@tonic-gate
967c478bd9Sstevel@tonic-gateinclude  $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
977c478bd9Sstevel@tonic-gate$(KCMDPROGS)	:=	LDLIBS += -lnsl -lmech_krb5
9867e3a03eSrie$(KCMDPROGS)	:=	LDFLAGS += $(ZIGNORE) $(KRUNPATH) \
997c478bd9Sstevel@tonic-gate				-L$(ROOT)$(KLIBDIR_DO) \
1007c478bd9Sstevel@tonic-gate				-L$(ROOT)$(KLIBDIR_GL)
1017c478bd9Sstevel@tonic-gateKCMDLINTS=	$(KCMDPROGS:%=lint-%)
1027c478bd9Sstevel@tonic-gate
1037c478bd9Sstevel@tonic-gate$(COMMONPOFILES) \
1047c478bd9Sstevel@tonic-gaterlogin.po rcp.po rsh.po \
1057c478bd9Sstevel@tonic-gate$(KCMDPROGS) \
1067c478bd9Sstevel@tonic-gate$(KCMDLINTS)	:=	CPPFLAGS += -DKERBEROS \
1077c478bd9Sstevel@tonic-gate			-I$(CMDINETCOMMONDIR) \
1087c478bd9Sstevel@tonic-gate			-I$(SRC)/lib/gss_mechs/mech_krb5 \
1097c478bd9Sstevel@tonic-gate			-I$(SRC)/uts/common/gssapi/mechs/krb5/include \
1107c478bd9Sstevel@tonic-gate			-I$(SRC)/lib/gss_mechs/mech_krb5/include \
1117c478bd9Sstevel@tonic-gate			-I$(SRC)/lib/gss_mechs/mech_krb5/include/krb5
1127c478bd9Sstevel@tonic-gate
1137c478bd9Sstevel@tonic-gate# "-erroff=E_NAME_USED_NOT_DEF2" and "-erroff=E_NAME_DEF_NOT_USED2"
1147c478bd9Sstevel@tonic-gate# are required because lint problems in the Kerberos 5 framework.
1157c478bd9Sstevel@tonic-gate$(KCMDLINTS)	:=	LINTFLAGS += -lnsl \
1167c478bd9Sstevel@tonic-gate			-erroff=E_NAME_USED_NOT_DEF2 \
1177c478bd9Sstevel@tonic-gate			-erroff=E_NAME_DEF_NOT_USED2
1187c478bd9Sstevel@tonic-gate
1197c478bd9Sstevel@tonic-gate# Extra source files to lint with
1207c478bd9Sstevel@tonic-gateLINTXTRA=
1217c478bd9Sstevel@tonic-gate$(KCMDLINTS)	:=	LINTXTRA += $(COMMONSRCS)
1227c478bd9Sstevel@tonic-gate
1237c478bd9Sstevel@tonic-gateROOTSUNWRCP=	$(ROOT)/usr/lib/sunw,rcp
1247c478bd9Sstevel@tonic-gateROOTRSHSYMLINK=	$(ROOT)/usr/ucb/rsh
1257c478bd9Sstevel@tonic-gateROOTREMSHSYMLINK=$(ROOT)/usr/bin/remsh
1267c478bd9Sstevel@tonic-gate
1277c478bd9Sstevel@tonic-gate.KEEP_STATE:
1287c478bd9Sstevel@tonic-gate
1297c478bd9Sstevel@tonic-gateall: $(ALL) $(SUBDIRS)
1307c478bd9Sstevel@tonic-gate
1317c478bd9Sstevel@tonic-gateinstall: all .WAIT $(ROOTPROG) $(ROOTSUIDPROG) \
1327c478bd9Sstevel@tonic-gate	$(SUBDIRS) $(ROOTSUNWRCP) $(ROOTRSHSYMLINK) $(ROOTREMSHSYMLINK)
1337c478bd9Sstevel@tonic-gate
1347c478bd9Sstevel@tonic-gate# Messaging - copy $POFILES to $POFILE to work with the parent directory
1357c478bd9Sstevel@tonic-gate# Makefile's '_msg' target.
1367c478bd9Sstevel@tonic-gate#
1377c478bd9Sstevel@tonic-gate_msg: $(MSGSUBDIRS) $(POFILES)
1387c478bd9Sstevel@tonic-gate	$(RM) $(POFILE)
1397c478bd9Sstevel@tonic-gate	$(CAT) $(POFILES)	> $(POFILE)
1407c478bd9Sstevel@tonic-gate
1417c478bd9Sstevel@tonic-gate$(COMMONPOFILES): $(COMMONSRCS)
1427c478bd9Sstevel@tonic-gate	$(COMPILE.cpp) $(COMMONSRCS) > $(@:.po=.c).i
1437c478bd9Sstevel@tonic-gate	$(XGETTEXT) $(XGETFLAGS) $(@:.po=.c).i
1447c478bd9Sstevel@tonic-gate	$(RM) $@
1457c478bd9Sstevel@tonic-gate	sed "/^domain/d" < messages.po  > $@
1467c478bd9Sstevel@tonic-gate	$(RM) messages.po $(@:.po=.c).i
1477c478bd9Sstevel@tonic-gate
1487c478bd9Sstevel@tonic-gate$(COMMONOBJS): $(COMMONSRCS)
1497c478bd9Sstevel@tonic-gate	$(COMPILE.c) $(COMMONSRCS)
1507c478bd9Sstevel@tonic-gate
1517c478bd9Sstevel@tonic-gaterlogin: rlogin.o $(COMMONOBJS)
1527c478bd9Sstevel@tonic-gate	$(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS)
1537c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
1545661bb76SJohn Levon
1557c478bd9Sstevel@tonic-gatercp: rcp.o $(COMMONOBJS)
1567c478bd9Sstevel@tonic-gate	$(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS)
1577c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
1587c478bd9Sstevel@tonic-gate
1597c478bd9Sstevel@tonic-gatersh: rsh.o $(COMMONOBJS)
1607c478bd9Sstevel@tonic-gate	$(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS)
1617c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
1625661bb76SJohn Levon
1637c478bd9Sstevel@tonic-gate$(ROOTSUNWRCP):
1647c478bd9Sstevel@tonic-gate	$(RM) $@; $(SYMLINK) ../bin/rcp $@
1657c478bd9Sstevel@tonic-gate
1667c478bd9Sstevel@tonic-gate$(ROOTRSHSYMLINK):
1677c478bd9Sstevel@tonic-gate	$(RM) $@; $(SYMLINK) ../bin/rsh $@
1687c478bd9Sstevel@tonic-gate
1697c478bd9Sstevel@tonic-gate$(ROOTREMSHSYMLINK):
1707c478bd9Sstevel@tonic-gate	$(RM) $@; $(SYMLINK) rsh $@
1717c478bd9Sstevel@tonic-gate
1727c478bd9Sstevel@tonic-gate$(SUBDIRS): FRC
1737c478bd9Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET)
1747c478bd9Sstevel@tonic-gate
1757c478bd9Sstevel@tonic-gateFRC:
1767c478bd9Sstevel@tonic-gate
177b6805bf7SGordon Rossclean: $(SUBDIRS) clean_local
178b6805bf7SGordon Rossclean_local:
179b6805bf7SGordon Ross	$(RM) $(CLEANFILES)
1807c478bd9Sstevel@tonic-gate
1817c478bd9Sstevel@tonic-gateclobber: $(SUBDIRS) clobber_local
182b6805bf7SGordon Rossclobber_local: clean_local
1835661bb76SJohn Levon	$(RM) $(CLOBBERFILES)
1847c478bd9Sstevel@tonic-gate
1857c478bd9Sstevel@tonic-gateLINTLOCALS=	$(LINTCLEAN:%.c=lint-%)
1867c478bd9Sstevel@tonic-gate
1877c478bd9Sstevel@tonic-gatelint:	$(LINTSUBDIRS) $(LINTLOCALS)
1887c478bd9Sstevel@tonic-gate
1897c478bd9Sstevel@tonic-gate$(LINTLOCALS):
1907c478bd9Sstevel@tonic-gate	$(LINT.c) $(@:lint-%=%.c) $(LINTXTRA) $(LDLIBS)
191