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 596ccc8cbSesaxe# Common Development and Distribution License (the "License"). 696ccc8cbSesaxe# 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# cmd/mailx/Makefile 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gatePROG= mailx 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gateOBJS= myfopen.o aux.o cmd1.o cmd2.o cmd3.o \ 307c478bd9Sstevel@tonic-gate cmd4.o cmdtab.o collect.o config.o edit.o \ 317c478bd9Sstevel@tonic-gate init.o fio.o getname.o head.o \ 327c478bd9Sstevel@tonic-gate hostname.o lex.o list.o lock.o lpaths.o \ 337c478bd9Sstevel@tonic-gate main.o names.o optim.o popen.o quit.o \ 347c478bd9Sstevel@tonic-gate receipt.o send.o sigretro.o stralloc.o temp.o \ 357c478bd9Sstevel@tonic-gate translate.o tty.o usg.local.o vars.o 367c478bd9Sstevel@tonic-gate 377c478bd9Sstevel@tonic-gateSRCS= $(OBJS:.o=.c) 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gateMISC= misc 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gateinclude ../Makefile.cmd 427c478bd9Sstevel@tonic-gate# 437c478bd9Sstevel@tonic-gate# for messaging catalogue file 447c478bd9Sstevel@tonic-gate# 457c478bd9Sstevel@tonic-gatePOFILE= mailx.po 467c478bd9Sstevel@tonic-gatePOFILES= $(SRCS:%.c=%.po) 477c478bd9Sstevel@tonic-gate 487c478bd9Sstevel@tonic-gateROOTMAILXD= $(ROOTSHLIB)/mailx 497c478bd9Sstevel@tonic-gateROOTETCMAILD= $(ROOTETC)/mail 507c478bd9Sstevel@tonic-gateMAILXHELP= mailx.help mailx.help.~ 517c478bd9Sstevel@tonic-gateROOTMAILXHELP= $(MAILXHELP:%=$(ROOTMAILXD)/%) 527c478bd9Sstevel@tonic-gateMAILXRC= $(MISC)/mailx.rc 537c478bd9Sstevel@tonic-gateUCBMAILRC= $(MISC)/Mail.rc 547c478bd9Sstevel@tonic-gateROOTMAILXRC= $(MAILXRC:$(MISC)/%=$(ROOTETCMAILD)/%) 557c478bd9Sstevel@tonic-gateROOTUCBMAILRC= $(UCBMAILRC:$(MISC)/%=$(ROOTETCMAILD)/%) 567c478bd9Sstevel@tonic-gateROOTUCBMAIL= $(ROOT)/usr/ucb/mail 577c478bd9Sstevel@tonic-gateROOTUCBCAPMAIL= $(ROOT)/usr/ucb/Mail 587c478bd9Sstevel@tonic-gate 597c478bd9Sstevel@tonic-gate$(ROOTPROG) := FILEMODE = 02511 607c478bd9Sstevel@tonic-gate$(ROOTMAILXHELP) := FILEMODE = 0644 617c478bd9Sstevel@tonic-gate$(ROOTMAILXRC) := FILEMODE = 0644 627c478bd9Sstevel@tonic-gate$(ROOTUCBMAILRC) := FILEMODE = 0644 637c478bd9Sstevel@tonic-gate 647c478bd9Sstevel@tonic-gateCPPFLAGS= -Ihdr -DUSG -DOPTIM $(CPPFLAGS.master) 65*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses 66*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized 67*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-variable 68*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-clobbered 697c478bd9Sstevel@tonic-gateLINTFLAGS= -hb 707c478bd9Sstevel@tonic-gateLDLIBS += -lmail 7124da5b34SrieLDFLAGS += $(MAPFILE.NGB:%=-M%) 727c478bd9Sstevel@tonic-gate 737c478bd9Sstevel@tonic-gate# install rules 747c478bd9Sstevel@tonic-gate$(ROOTMAILXD)/% : % 757c478bd9Sstevel@tonic-gate $(INS.file) 767c478bd9Sstevel@tonic-gate 777c478bd9Sstevel@tonic-gate$(ROOTETCMAILD)/% : $(MISC)/% 787c478bd9Sstevel@tonic-gate $(INS.file) 797c478bd9Sstevel@tonic-gate 807c478bd9Sstevel@tonic-gate.KEEP_STATE: 817c478bd9Sstevel@tonic-gate 827c478bd9Sstevel@tonic-gateall: $(PROG) $(MAILXHELP) $(MAILXRC) $(UCBMAILRC) 837c478bd9Sstevel@tonic-gate 8496ccc8cbSesaxe$(PROG): $(OBJS) $(LIBMAIL) 8596ccc8cbSesaxe $(LINK.c) $(OBJS) -o $@ $(LDLIBS) 867c478bd9Sstevel@tonic-gate $(POST_PROCESS) 877c478bd9Sstevel@tonic-gate 887c478bd9Sstevel@tonic-gateinstall: all $(ROOTMAILXD) $(ROOTPROG) $(ROOTMAILXHELP) \ 897c478bd9Sstevel@tonic-gate $(ROOTMAILXRC) $(ROOTUCBMAIL) $(ROOTUCBCAPMAIL) $(ROOTUCBMAILRC) 907c478bd9Sstevel@tonic-gate 917c478bd9Sstevel@tonic-gate$(ROOTUCBMAIL) $(ROOTUCBCAPMAIL): 927c478bd9Sstevel@tonic-gate $(RM) $@; $(SYMLINK) ../bin/mailx $@ 937c478bd9Sstevel@tonic-gate 947c478bd9Sstevel@tonic-gate$(ROOTMAILXD): 957c478bd9Sstevel@tonic-gate $(INS.dir) 967c478bd9Sstevel@tonic-gate 977c478bd9Sstevel@tonic-gate$(MAILXHELP): $(MISC)/$$@ 987c478bd9Sstevel@tonic-gate $(GREP) -v '^#.*@(' $(MISC)/$@ > $@ 997c478bd9Sstevel@tonic-gate 1007c478bd9Sstevel@tonic-gate$(POFILE): $(POFILES) 1017c478bd9Sstevel@tonic-gate $(RM) $@ 1027c478bd9Sstevel@tonic-gate cat $(POFILES) > $@ 1037c478bd9Sstevel@tonic-gate 1047c478bd9Sstevel@tonic-gateclean: 10596ccc8cbSesaxe $(RM) $(OBJS) 1067c478bd9Sstevel@tonic-gate 1077c478bd9Sstevel@tonic-gatelint: lint_SRCS 1087c478bd9Sstevel@tonic-gate 1097c478bd9Sstevel@tonic-gateinclude ../Makefile.targ 1107c478bd9Sstevel@tonic-gate 1117c478bd9Sstevel@tonic-gateFRC: 112