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. 261dd3983cSYuri Pankov# 277c478bd9Sstevel@tonic-gate 284b22b933Srs200217PROG= dns-sd finger rdate ruptime rwho whois 297c478bd9Sstevel@tonic-gateSUIDPROG= rcp rlogin rsh 307c478bd9Sstevel@tonic-gateALL= $(PROG) $(SUIDPROG) 317c478bd9Sstevel@tonic-gateSRCS= $(ALL:%=%.c) 327c478bd9Sstevel@tonic-gateKCMDPROGS= rcp rlogin rsh 337c478bd9Sstevel@tonic-gate 3403100a63Svk199839SUBDIRS= chat ftp nc nca netstat \ 3503100a63Svk199839 pppd pppdump pppstats rdist talk telnet tftp 367c478bd9Sstevel@tonic-gateSUBDIR1= talk 377c478bd9Sstevel@tonic-gateMSGSUBDIRS= nca talk 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate# As programs get lint-clean, add them here. Eventually. 407c478bd9Sstevel@tonic-gate# This hack should go away, and all in PROG should be lint-clean. 411dd3983cSYuri PankovLINTCLEAN= rlogin.c rsh.c rcp.c rdate.c rwho.c whois.c 427c478bd9Sstevel@tonic-gate 437c478bd9Sstevel@tonic-gate# Likewise, as subdirs get lint-clean, add them here. Once 447c478bd9Sstevel@tonic-gate# they're all clean, replace the dependency of the lint target 457c478bd9Sstevel@tonic-gate# with SUBDIRS. Also (sigh) deal with the commented-out build lines 467c478bd9Sstevel@tonic-gate# for the lint rule. 4769bb4bb4ScarlsonjLINTSUBDIRS= nca netstat pppd pppstats tftp 487c478bd9Sstevel@tonic-gate 497c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd 507c478bd9Sstevel@tonic-gateinclude ../Makefile.cmd-inet 517c478bd9Sstevel@tonic-gate 527c478bd9Sstevel@tonic-gateCOMMONOBJS= kcmd.o 537c478bd9Sstevel@tonic-gateCOMMONPOFILES= $(COMMONOBJS:.o=.po) 547c478bd9Sstevel@tonic-gateCOMMONSRCS= $(CMDINETCOMMONDIR)/$(COMMONOBJS:.o=.c) 557c478bd9Sstevel@tonic-gate 567c478bd9Sstevel@tonic-gatePOFILES= rlogin.po rsh.po rcp.po $(COMMONPOFILES) 577c478bd9Sstevel@tonic-gatePOFILE= usr.bin.po 587c478bd9Sstevel@tonic-gate 59*b6805bf7SGordon RossCLOBBERFILES += $(ALL) 60*b6805bf7SGordon RossCLEANFILES += kcmd.o rcp.o rlogin.o rsh.o 61*b6805bf7SGordon Ross 627c478bd9Sstevel@tonic-gateall:= TARGET= all 637c478bd9Sstevel@tonic-gateinstall:= TARGET= install 647c478bd9Sstevel@tonic-gateclean:= TARGET= clean 657c478bd9Sstevel@tonic-gateclobber:= TARGET= clobber 667c478bd9Sstevel@tonic-gatelint:= TARGET= lint 677c478bd9Sstevel@tonic-gate_msg:= TARGET= _msg 687c478bd9Sstevel@tonic-gate 697c478bd9Sstevel@tonic-gateROOTSUIDPROG= $(SUIDPROG:%=$(ROOTBIN)/%) 707c478bd9Sstevel@tonic-gate$(ROOTSUIDPROG) := FILEMODE= 04555 717c478bd9Sstevel@tonic-gate 727c478bd9Sstevel@tonic-gateCPPFLAGS += -DSYSV -DSTRNET -DBSD_COMP -I$(CMDINETCOMMONDIR) 737014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses 747014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized 757014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-function 767c478bd9Sstevel@tonic-gate 777c478bd9Sstevel@tonic-gate# Eventually just plain CFLAGS should be += -v, but not until all in 787c478bd9Sstevel@tonic-gate# PROGS are lint clean. 797c478bd9Sstevel@tonic-gate$(LINTCLEAN) := CFLAGS += $(CCVERBOSE) 807c478bd9Sstevel@tonic-gate 814b22b933Srs200217dns-sd := CFLAGS += $(C99_ENABLE) 827c478bd9Sstevel@tonic-gatefinger := CFLAGS += $(CCVERBOSE) 837c478bd9Sstevel@tonic-gate# Enable large file support for reading the lastlog file. 847c478bd9Sstevel@tonic-gatefinger := CPPFLAGS += -D_FILE_OFFSET_BITS=64 857c478bd9Sstevel@tonic-gate 864b22b933Srs200217dns-sd := LDLIBS += -lsocket -ldns_sd 8706e1a714Sraffinger := LDLIBS += -lnsl -lcurses -lsocket 887c478bd9Sstevel@tonic-gatercp lint-rcp := LDLIBS += -lsocket -lsec -lsendfile 897c478bd9Sstevel@tonic-gaterdate lint-rdate:= LDLIBS += -lsocket 907c478bd9Sstevel@tonic-gaterlogin lint-rlogin := LDLIBS += -lnsl -lsocket 917c478bd9Sstevel@tonic-gatersh lint-rsh := LDLIBS += -lsocket 921dd3983cSYuri Pankovwhois lint-whois := LDLIBS += -lsocket 937c478bd9Sstevel@tonic-gate 947c478bd9Sstevel@tonic-gateinclude $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5 957c478bd9Sstevel@tonic-gate$(KCMDPROGS) := LDLIBS += -lnsl -lmech_krb5 9667e3a03eSrie$(KCMDPROGS) := LDFLAGS += $(ZIGNORE) $(KRUNPATH) \ 977c478bd9Sstevel@tonic-gate -L$(ROOT)$(KLIBDIR_DO) \ 987c478bd9Sstevel@tonic-gate -L$(ROOT)$(KLIBDIR_GL) 997c478bd9Sstevel@tonic-gateKCMDLINTS= $(KCMDPROGS:%=lint-%) 1007c478bd9Sstevel@tonic-gate 1017c478bd9Sstevel@tonic-gate$(COMMONPOFILES) \ 1027c478bd9Sstevel@tonic-gaterlogin.po rcp.po rsh.po \ 1037c478bd9Sstevel@tonic-gate$(KCMDPROGS) \ 1047c478bd9Sstevel@tonic-gate$(KCMDLINTS) := CPPFLAGS += -DKERBEROS \ 1057c478bd9Sstevel@tonic-gate -I$(CMDINETCOMMONDIR) \ 1067c478bd9Sstevel@tonic-gate -I$(SRC)/lib/gss_mechs/mech_krb5 \ 1077c478bd9Sstevel@tonic-gate -I$(SRC)/uts/common/gssapi/mechs/krb5/include \ 1087c478bd9Sstevel@tonic-gate -I$(SRC)/lib/gss_mechs/mech_krb5/include \ 1097c478bd9Sstevel@tonic-gate -I$(SRC)/lib/gss_mechs/mech_krb5/include/krb5 1107c478bd9Sstevel@tonic-gate 1117c478bd9Sstevel@tonic-gate# "-erroff=E_NAME_USED_NOT_DEF2" and "-erroff=E_NAME_DEF_NOT_USED2" 1127c478bd9Sstevel@tonic-gate# are required because lint problems in the Kerberos 5 framework. 1137c478bd9Sstevel@tonic-gate$(KCMDLINTS) := LINTFLAGS += -lnsl \ 1147c478bd9Sstevel@tonic-gate -erroff=E_NAME_USED_NOT_DEF2 \ 1157c478bd9Sstevel@tonic-gate -erroff=E_NAME_DEF_NOT_USED2 1167c478bd9Sstevel@tonic-gate 1177c478bd9Sstevel@tonic-gate# Extra source files to lint with 1187c478bd9Sstevel@tonic-gateLINTXTRA= 1197c478bd9Sstevel@tonic-gate$(KCMDLINTS) := LINTXTRA += $(COMMONSRCS) 1207c478bd9Sstevel@tonic-gate 1217c478bd9Sstevel@tonic-gateROOTSUNWRCP= $(ROOT)/usr/lib/sunw,rcp 1227c478bd9Sstevel@tonic-gateROOTRSHSYMLINK= $(ROOT)/usr/ucb/rsh 1237c478bd9Sstevel@tonic-gateROOTREMSHSYMLINK=$(ROOT)/usr/bin/remsh 1247c478bd9Sstevel@tonic-gate 1257c478bd9Sstevel@tonic-gate.KEEP_STATE: 1267c478bd9Sstevel@tonic-gate 1277c478bd9Sstevel@tonic-gateall: $(ALL) $(SUBDIRS) 1287c478bd9Sstevel@tonic-gate 1297c478bd9Sstevel@tonic-gateinstall: all .WAIT $(ROOTPROG) $(ROOTSUIDPROG) \ 1307c478bd9Sstevel@tonic-gate $(SUBDIRS) $(ROOTSUNWRCP) $(ROOTRSHSYMLINK) $(ROOTREMSHSYMLINK) 1317c478bd9Sstevel@tonic-gate 1327c478bd9Sstevel@tonic-gate# Messaging - copy $POFILES to $POFILE to work with the parent directory 1337c478bd9Sstevel@tonic-gate# Makefile's '_msg' target. 1347c478bd9Sstevel@tonic-gate# 1357c478bd9Sstevel@tonic-gate_msg: $(MSGSUBDIRS) $(POFILES) 1367c478bd9Sstevel@tonic-gate $(RM) $(POFILE) 1377c478bd9Sstevel@tonic-gate $(CAT) $(POFILES) > $(POFILE) 1387c478bd9Sstevel@tonic-gate 1397c478bd9Sstevel@tonic-gate$(COMMONPOFILES): $(COMMONSRCS) 1407c478bd9Sstevel@tonic-gate $(COMPILE.cpp) $(COMMONSRCS) > $(@:.po=.c).i 1417c478bd9Sstevel@tonic-gate $(XGETTEXT) $(XGETFLAGS) $(@:.po=.c).i 1427c478bd9Sstevel@tonic-gate $(RM) $@ 1437c478bd9Sstevel@tonic-gate sed "/^domain/d" < messages.po > $@ 1447c478bd9Sstevel@tonic-gate $(RM) messages.po $(@:.po=.c).i 1457c478bd9Sstevel@tonic-gate 1467c478bd9Sstevel@tonic-gate$(COMMONOBJS): $(COMMONSRCS) 1477c478bd9Sstevel@tonic-gate $(COMPILE.c) $(COMMONSRCS) 1487c478bd9Sstevel@tonic-gate 1497c478bd9Sstevel@tonic-gaterlogin: rlogin.o $(COMMONOBJS) 1507c478bd9Sstevel@tonic-gate $(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS) 1517c478bd9Sstevel@tonic-gate $(POST_PROCESS) 1527c478bd9Sstevel@tonic-gate 1537c478bd9Sstevel@tonic-gatercp: rcp.o $(COMMONOBJS) 1547c478bd9Sstevel@tonic-gate $(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS) 1557c478bd9Sstevel@tonic-gate $(POST_PROCESS) 1567c478bd9Sstevel@tonic-gate 1577c478bd9Sstevel@tonic-gatersh: rsh.o $(COMMONOBJS) 1587c478bd9Sstevel@tonic-gate $(LINK.c) $@.o $(COMMONOBJS) -o $@ $(LDLIBS) 1597c478bd9Sstevel@tonic-gate $(POST_PROCESS) 1607c478bd9Sstevel@tonic-gate 1617c478bd9Sstevel@tonic-gate$(ROOTSUNWRCP): 1627c478bd9Sstevel@tonic-gate $(RM) $@; $(SYMLINK) ../bin/rcp $@ 1637c478bd9Sstevel@tonic-gate 1647c478bd9Sstevel@tonic-gate$(ROOTRSHSYMLINK): 1657c478bd9Sstevel@tonic-gate $(RM) $@; $(SYMLINK) ../bin/rsh $@ 1667c478bd9Sstevel@tonic-gate 1677c478bd9Sstevel@tonic-gate$(ROOTREMSHSYMLINK): 1687c478bd9Sstevel@tonic-gate $(RM) $@; $(SYMLINK) rsh $@ 1697c478bd9Sstevel@tonic-gate 1707c478bd9Sstevel@tonic-gate$(SUBDIRS): FRC 1717c478bd9Sstevel@tonic-gate @cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET) 1727c478bd9Sstevel@tonic-gate 1737c478bd9Sstevel@tonic-gateFRC: 1747c478bd9Sstevel@tonic-gate 175*b6805bf7SGordon Rossclean: $(SUBDIRS) clean_local 176*b6805bf7SGordon Rossclean_local: 177*b6805bf7SGordon Ross $(RM) $(CLEANFILES) 1787c478bd9Sstevel@tonic-gate 1797c478bd9Sstevel@tonic-gateclobber: $(SUBDIRS) clobber_local 180*b6805bf7SGordon Rossclobber_local: clean_local 181*b6805bf7SGordon Ross $(RM) $(CLOBBERFILES) 1827c478bd9Sstevel@tonic-gate 1837c478bd9Sstevel@tonic-gateLINTLOCALS= $(LINTCLEAN:%.c=lint-%) 1847c478bd9Sstevel@tonic-gate 1857c478bd9Sstevel@tonic-gatelint: $(LINTSUBDIRS) $(LINTLOCALS) 1867c478bd9Sstevel@tonic-gate 1877c478bd9Sstevel@tonic-gate$(LINTLOCALS): 1887c478bd9Sstevel@tonic-gate $(LINT.c) $(@:lint-%=%.c) $(LINTXTRA) $(LDLIBS) 189