xref: /illumos-gate/usr/src/cmd/mail/Makefile (revision b7d62af5b42f0da2eb668e8d33d24d2f4fdd98a8)
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
57c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate# with the License.
87c478bd9Sstevel@tonic-gate#
97c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate# and limitations under the License.
137c478bd9Sstevel@tonic-gate#
147c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate#
207c478bd9Sstevel@tonic-gate# CDDL HEADER END
217c478bd9Sstevel@tonic-gate#
227c478bd9Sstevel@tonic-gate#
237c478bd9Sstevel@tonic-gate#
24*b7d62af5Sceastha# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
257c478bd9Sstevel@tonic-gate# Use is subject to license terms.
267c478bd9Sstevel@tonic-gate#
277c478bd9Sstevel@tonic-gate# ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate#
297c478bd9Sstevel@tonic-gate
307c478bd9Sstevel@tonic-gate
317c478bd9Sstevel@tonic-gateBINPROG=	mail
327c478bd9Sstevel@tonic-gate
337c478bd9Sstevel@tonic-gatePROG= 	       $(BINPROG)
347c478bd9Sstevel@tonic-gate
357c478bd9Sstevel@tonic-gateGREP=		grep
367c478bd9Sstevel@tonic-gate
377c478bd9Sstevel@tonic-gateinclude ../Makefile.cmd
387c478bd9Sstevel@tonic-gate
397c478bd9Sstevel@tonic-gateCLOBBERFILES=	$(PROG)
407c478bd9Sstevel@tonic-gateCLEANFILES=	$(MAILOBJS)
417c478bd9Sstevel@tonic-gate
427c478bd9Sstevel@tonic-gateMAILOBJS= 	add_recip.o cat.o ckdlivopts.o \
437c478bd9Sstevel@tonic-gate		cksaved.o clr_hinfo.o copyback.o copylet.o \
447c478bd9Sstevel@tonic-gate		copymt.o createmf.o del_recipl.o Dout.o  delete.o \
457c478bd9Sstevel@tonic-gate		done.o doopen.o dumpaff.o dumprcv.o \
467c478bd9Sstevel@tonic-gate		errmsg.o gendeliv.o getarg.o getcomment.o \
477c478bd9Sstevel@tonic-gate		gethead.o goback.o init.o \
487c478bd9Sstevel@tonic-gate		isheader.o isit.o islocal.o istext.o legal.o \
497c478bd9Sstevel@tonic-gate		lock.o  main.o mkdead.o mta_ercode.o \
507c478bd9Sstevel@tonic-gate		new_recipl.o parse.o pckaffspot.o pckrcvspot.o \
517c478bd9Sstevel@tonic-gate		pickFrom.o pipletr.o poplist.o printhdr.o printmail.o \
527c478bd9Sstevel@tonic-gate		pushlist.o savehdrs.o sel_disp.o  sendlist.o \
537c478bd9Sstevel@tonic-gate		sendmail.o  setsig.o \
54*b7d62af5Sceastha		stamp.o Tout.o
557c478bd9Sstevel@tonic-gate
567c478bd9Sstevel@tonic-gateMAILSRC=	 $(MAILOBJS:%.o=%.c)
577c478bd9Sstevel@tonic-gate
587c478bd9Sstevel@tonic-gateCPROG=		mail
597c478bd9Sstevel@tonic-gateCPROGSRC= 	$(CPROG:%=_%.c)
607c478bd9Sstevel@tonic-gate
617c478bd9Sstevel@tonic-gate# ROOT directories
627c478bd9Sstevel@tonic-gateROOTMAILD=	$(ROOTLIB)/mail
637c478bd9Sstevel@tonic-gateROOTINC=	$(ROOT)/usr/include
647c478bd9Sstevel@tonic-gate
657c478bd9Sstevel@tonic-gate# installed modules
667c478bd9Sstevel@tonic-gateROOTBINPROG=	$(BINPROG:%=$(ROOTBIN)/%)
677c478bd9Sstevel@tonic-gate
687c478bd9Sstevel@tonic-gateROOTSYMLINKS=	$(ROOTBIN)/rmail
697c478bd9Sstevel@tonic-gate
707c478bd9Sstevel@tonic-gate
717c478bd9Sstevel@tonic-gateEDITPATH= \
727c478bd9Sstevel@tonic-gate	sed -e 's!REAL_PATH!/usr/bin!g' \
737c478bd9Sstevel@tonic-gate	    -e 's!USR_SHARE_LIB!/usr/share/lib!g' \
747c478bd9Sstevel@tonic-gate	    -e 's!VAR_MAIL!/var/mail!g' < $? > $@
757c478bd9Sstevel@tonic-gate
767c478bd9Sstevel@tonic-gateCPPFLAGS =	-DSVR4 -I. $(CPPFLAGS.master)
777c478bd9Sstevel@tonic-gate
787c478bd9Sstevel@tonic-gateLDLIBS +=	-lmail -lsocket
797c478bd9Sstevel@tonic-gate
807c478bd9Sstevel@tonic-gate# conditional assignments
817c478bd9Sstevel@tonic-gate#
827c478bd9Sstevel@tonic-gateall:=		TARGET= all
837c478bd9Sstevel@tonic-gateinstall:=	TARGET= install
847c478bd9Sstevel@tonic-gateclean:=		TARGET= clean
857c478bd9Sstevel@tonic-gateclobber:=	TARGET= clobber
867c478bd9Sstevel@tonic-gatelint:=		TARGET= lint
877c478bd9Sstevel@tonic-gate
887c478bd9Sstevel@tonic-gate# file modes, owners and groups for the install target
897c478bd9Sstevel@tonic-gate#
907c478bd9Sstevel@tonic-gate
917c478bd9Sstevel@tonic-gate
927c478bd9Sstevel@tonic-gate$(ROOTBIN)/mail :=	FILEMODE =	02511
937c478bd9Sstevel@tonic-gate$(ROOTBIN)/mail :=	GROUP =	mail
947c478bd9Sstevel@tonic-gate
957c478bd9Sstevel@tonic-gate
967c478bd9Sstevel@tonic-gate# install rules
977c478bd9Sstevel@tonic-gate$(ROOTINC)/% : %
987c478bd9Sstevel@tonic-gate	$(INS.file)
997c478bd9Sstevel@tonic-gate
1007c478bd9Sstevel@tonic-gate.KEEP_STATE:
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gate.PARALLEL: $(MAILOBJS) $(OBJS)
1037c478bd9Sstevel@tonic-gate
1047c478bd9Sstevel@tonic-gateall:		$(PROG)
1057c478bd9Sstevel@tonic-gate
1067c478bd9Sstevel@tonic-gatemail: 		$(MAILOBJS)
1077c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ $(MAILOBJS) $(LDLIBS)
1087c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
1097c478bd9Sstevel@tonic-gate
1107c478bd9Sstevel@tonic-gateinstall: all .WAIT $(ROOTBINPROG) $(ROOTSYMLINKS)
1117c478bd9Sstevel@tonic-gate
1127c478bd9Sstevel@tonic-gate# ROOTSYMLINKS
1137c478bd9Sstevel@tonic-gate#
1147c478bd9Sstevel@tonic-gate$(ROOTBIN)/rmail:
1157c478bd9Sstevel@tonic-gate	$(RM) $@; $(SYMLINK) mail $@
1167c478bd9Sstevel@tonic-gate
1177c478bd9Sstevel@tonic-gatelint:
1187c478bd9Sstevel@tonic-gate	$(LINT.c) $(MAILSRC)
1197c478bd9Sstevel@tonic-gate
1207c478bd9Sstevel@tonic-gateclean:
1217c478bd9Sstevel@tonic-gate	$(RM) $(OBJS) $(MAILOBJS)
1227c478bd9Sstevel@tonic-gate
1237c478bd9Sstevel@tonic-gateclobber:
1247c478bd9Sstevel@tonic-gate	$(RM) $(OBJS) $(MAILOBJS) mail
125