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