mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-23 17:51:05 +01:00
bdcbfde31e
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
22 lines
562 B
Makefile
22 lines
562 B
Makefile
|
|
CONFS= misc/mail.rc
|
|
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
|
|
|
|
WARNS?= 2
|
|
|
|
.PATH: ${.CURDIR}/misc
|
|
|
|
etc-mailrc:
|
|
cd ${.CURDIR}/misc; ${INSTALL} -o root -g wheel \
|
|
-m 644 ${EFILES} ${DESTDIR}/etc
|
|
|
|
.include <bsd.prog.mk>
|