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 524da5b34Srie# Common Development and Distribution License (the "License"). 624da5b34Srie# 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# 217c478bd9Sstevel@tonic-gate# 2224fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate# Use is subject to license terms. 247c478bd9Sstevel@tonic-gate# 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gateBINPROG= mail 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gatePROG= $(BINPROG) 307c478bd9Sstevel@tonic-gate 317c478bd9Sstevel@tonic-gateGREP= grep 327c478bd9Sstevel@tonic-gate 337c478bd9Sstevel@tonic-gateinclude ../Makefile.cmd 347c478bd9Sstevel@tonic-gate 357c478bd9Sstevel@tonic-gateCLOBBERFILES= $(PROG) 367c478bd9Sstevel@tonic-gateCLEANFILES= $(MAILOBJS) 377c478bd9Sstevel@tonic-gate 387c478bd9Sstevel@tonic-gateMAILOBJS= add_recip.o cat.o ckdlivopts.o \ 397c478bd9Sstevel@tonic-gate cksaved.o clr_hinfo.o copyback.o copylet.o \ 407c478bd9Sstevel@tonic-gate copymt.o createmf.o del_recipl.o Dout.o delete.o \ 417c478bd9Sstevel@tonic-gate done.o doopen.o dumpaff.o dumprcv.o \ 427c478bd9Sstevel@tonic-gate errmsg.o gendeliv.o getarg.o getcomment.o \ 437c478bd9Sstevel@tonic-gate gethead.o goback.o init.o \ 447c478bd9Sstevel@tonic-gate isheader.o isit.o islocal.o istext.o legal.o \ 457c478bd9Sstevel@tonic-gate lock.o main.o mkdead.o mta_ercode.o \ 467c478bd9Sstevel@tonic-gate new_recipl.o parse.o pckaffspot.o pckrcvspot.o \ 477c478bd9Sstevel@tonic-gate pickFrom.o pipletr.o poplist.o printhdr.o printmail.o \ 487c478bd9Sstevel@tonic-gate pushlist.o savehdrs.o sel_disp.o sendlist.o \ 497c478bd9Sstevel@tonic-gate sendmail.o setsig.o \ 50b7d62af5Sceastha stamp.o Tout.o 517c478bd9Sstevel@tonic-gate 527c478bd9Sstevel@tonic-gateMAILSRC= $(MAILOBJS:%.o=%.c) 537c478bd9Sstevel@tonic-gate 547c478bd9Sstevel@tonic-gateCPROG= mail 557c478bd9Sstevel@tonic-gateCPROGSRC= $(CPROG:%=_%.c) 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate# ROOT directories 587c478bd9Sstevel@tonic-gateROOTMAILD= $(ROOTLIB)/mail 597c478bd9Sstevel@tonic-gateROOTINC= $(ROOT)/usr/include 607c478bd9Sstevel@tonic-gate 617c478bd9Sstevel@tonic-gate# installed modules 627c478bd9Sstevel@tonic-gateROOTBINPROG= $(BINPROG:%=$(ROOTBIN)/%) 637c478bd9Sstevel@tonic-gate 647c478bd9Sstevel@tonic-gateROOTSYMLINKS= $(ROOTBIN)/rmail 657c478bd9Sstevel@tonic-gate 667c478bd9Sstevel@tonic-gate 677c478bd9Sstevel@tonic-gateEDITPATH= \ 687c478bd9Sstevel@tonic-gate sed -e 's!REAL_PATH!/usr/bin!g' \ 697c478bd9Sstevel@tonic-gate -e 's!USR_SHARE_LIB!/usr/share/lib!g' \ 707c478bd9Sstevel@tonic-gate -e 's!VAR_MAIL!/var/mail!g' < $? > $@ 717c478bd9Sstevel@tonic-gate 727c478bd9Sstevel@tonic-gateCPPFLAGS = -DSVR4 -I. $(CPPFLAGS.master) 73*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-implicit-function-declaration 74*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-variable 75*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized 76*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-clobbered 77*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-extra 787c478bd9Sstevel@tonic-gate 797c478bd9Sstevel@tonic-gateLDLIBS += -lmail -lsocket 807c478bd9Sstevel@tonic-gate 8124da5b34Srie# mail defines its own delete() - reduce symbols to locals to remove name clash. 8224da5b34SrieLDFLAGS += $(MAPFILE.NGB:%=-M%) 8324da5b34Srie 847c478bd9Sstevel@tonic-gate# conditional assignments 857c478bd9Sstevel@tonic-gate# 867c478bd9Sstevel@tonic-gateall:= TARGET= all 877c478bd9Sstevel@tonic-gateinstall:= TARGET= install 887c478bd9Sstevel@tonic-gateclean:= TARGET= clean 897c478bd9Sstevel@tonic-gateclobber:= TARGET= clobber 907c478bd9Sstevel@tonic-gatelint:= TARGET= lint 917c478bd9Sstevel@tonic-gate 927c478bd9Sstevel@tonic-gate# file modes, owners and groups for the install target 937c478bd9Sstevel@tonic-gate# 947c478bd9Sstevel@tonic-gate 957c478bd9Sstevel@tonic-gate 967c478bd9Sstevel@tonic-gate$(ROOTBIN)/mail := FILEMODE = 02511 977c478bd9Sstevel@tonic-gate 987c478bd9Sstevel@tonic-gate 997c478bd9Sstevel@tonic-gate# install rules 1007c478bd9Sstevel@tonic-gate$(ROOTINC)/% : % 1017c478bd9Sstevel@tonic-gate $(INS.file) 1027c478bd9Sstevel@tonic-gate 1037c478bd9Sstevel@tonic-gate.KEEP_STATE: 1047c478bd9Sstevel@tonic-gate 1057c478bd9Sstevel@tonic-gate.PARALLEL: $(MAILOBJS) $(OBJS) 1067c478bd9Sstevel@tonic-gate 1077c478bd9Sstevel@tonic-gateall: $(PROG) 1087c478bd9Sstevel@tonic-gate 1097c478bd9Sstevel@tonic-gatemail: $(MAILOBJS) 1107c478bd9Sstevel@tonic-gate $(LINK.c) -o $@ $(MAILOBJS) $(LDLIBS) 1117c478bd9Sstevel@tonic-gate $(POST_PROCESS) 1127c478bd9Sstevel@tonic-gate 1137c478bd9Sstevel@tonic-gateinstall: all .WAIT $(ROOTBINPROG) $(ROOTSYMLINKS) 1147c478bd9Sstevel@tonic-gate 1157c478bd9Sstevel@tonic-gate# ROOTSYMLINKS 1167c478bd9Sstevel@tonic-gate# 1177c478bd9Sstevel@tonic-gate$(ROOTBIN)/rmail: 1187c478bd9Sstevel@tonic-gate $(RM) $@; $(SYMLINK) mail $@ 1197c478bd9Sstevel@tonic-gate 1207c478bd9Sstevel@tonic-gatelint: 1217c478bd9Sstevel@tonic-gate $(LINT.c) $(MAILSRC) 1227c478bd9Sstevel@tonic-gate 1237c478bd9Sstevel@tonic-gateclean: 1247c478bd9Sstevel@tonic-gate $(RM) $(OBJS) $(MAILOBJS) 1257c478bd9Sstevel@tonic-gate 1267c478bd9Sstevel@tonic-gateclobber: 1277c478bd9Sstevel@tonic-gate $(RM) $(OBJS) $(MAILOBJS) mail 128