mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -05:00
The name `aux' is reserved on Windows file systems. aux.c in the mail(1) directory contains some random utility functions. I'm renaming this file to util.c to make it possible to check out this directory on Windows. MFC after: 1 month
20 lines
581 B
Makefile
20 lines
581 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 1/25/94
|
|
# $FreeBSD$
|
|
|
|
PROG= mail
|
|
SRCS= version.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c edit.c fio.c \
|
|
getname.c head.c v7.local.c lex.c list.c main.c names.c popen.c \
|
|
quit.c send.c strings.c temp.c tty.c util.c vars.c
|
|
FILES= mail.help mail.tildehelp
|
|
FILESDIR= ${SHAREDIR}/misc
|
|
EFILES= mail.rc
|
|
LINKS= ${BINDIR}/mail ${BINDIR}/Mail ${BINDIR}/mail ${BINDIR}/mailx
|
|
MLINKS= mail.1 Mail.1 mail.1 mailx.1
|
|
|
|
.PATH: ${.CURDIR}/misc
|
|
|
|
etc-mailrc:
|
|
cd ${.CURDIR}/misc; ${INSTALL} -o root -g wheel \
|
|
-m 644 ${EFILES} ${DESTDIR}/etc
|
|
|
|
.include <bsd.prog.mk>
|