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 2009 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25 26PROG= dns-sd finger rdate ruptime rwho whois 27SUIDPROG= rcp rlogin rsh 28ALL= $(PROG) $(SUIDPROG) 29SRCS= $(ALL:%=%.c) 30KCMDPROGS= rcp rlogin rsh 31 32SUBDIRS= chat ftp nc nca netstat \ 33 pppd pppdump pppstats rdist talk telnet tftp 34SUBDIR1= talk 35MSGSUBDIRS= nca talk 36 37# As programs get lint-clean, add them here. Eventually. 38# This hack should go away, and all in PROG should be lint-clean. 39LINTCLEAN= rlogin.c rsh.c rcp.c rdate.c rwho.c 40 41# Likewise, as subdirs get lint-clean, add them here. Once 42# they're all clean, replace the dependency of the lint target 43# with SUBDIRS. Also (sigh) deal with the commented-out build lines 44# for the lint rule. 45LINTSUBDIRS= nca netstat pppd pppstats tftp 46 47include ../../Makefile.cmd 48include ../Makefile.cmd-inet 49 50COMMONOBJS= kcmd.o 51COMMONPOFILES= $(COMMONOBJS:.o=.po) 52COMMONSRCS= $(CMDINETCOMMONDIR)/$(COMMONOBJS:.o=.c) 53 54POFILES= rlogin.po rsh.po rcp.po $(COMMONPOFILES) 55POFILE= usr.bin.po 56 57all:= TARGET= all 58install:= TARGET= install 59clean:= TARGET= clean 60clobber:= TARGET= clobber 61lint:= TARGET= lint 62_msg:= TARGET= _msg 63 64ROOTSUIDPROG= $(SUIDPROG:%=$(ROOTBIN)/%) 65$(ROOTSUIDPROG) := FILEMODE= 04555 66 67CPPFLAGS += -DSYSV -DSTRNET -DBSD_COMP -I$(CMDINETCOMMONDIR) 68 69# Eventually just plain CFLAGS should be += -v, but not until all in 70# PROGS are lint clean. 71$(LINTCLEAN) := CFLAGS += $(CCVERBOSE) 72 73dns-sd := CFLAGS += $(C99_ENABLE) 74finger := CFLAGS += $(CCVERBOSE) 75# Enable large file support for reading the lastlog file. 76finger := CPPFLAGS += -D_FILE_OFFSET_BITS=64 77 78dns-sd := LDLIBS += -lsocket -ldns_sd 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 += -lsocket 85 86include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5 87$(KCMDPROGS) := LDLIBS += -lnsl -lmech_krb5 88$(KCMDPROGS) := LDFLAGS += $(ZIGNORE) $(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