Home | History | Annotate | Line # | Download | only in mail
Makefile revision 1.23
      1  1.23  christos #	$NetBSD: Makefile,v 1.23 2006/09/18 19:46:21 christos Exp $
      2  1.10       tls #	@(#)Makefile	8.3 (Berkeley) 4/20/95
      3   1.1       cgd 
      4  1.15     lukem .include <bsd.own.mk>
      5  1.23  christos USE_READLINE=yes
      6  1.15     lukem 
      7   1.1       cgd PROG=	mail
      8  1.18        tv SRCS=	version.c support.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c dotlock.c \
      9   1.8  christos 	edit.c fio.c getname.c head.c v7.local.c lex.c list.c main.c names.c \
     10   1.8  christos 	popen.c quit.c send.c strings.c temp.c tty.c vars.c
     11   1.3       jtc LINKS=	${BINDIR}/mail ${BINDIR}/Mail ${BINDIR}/mail ${BINDIR}/mailx
     12   1.3       jtc MLINKS=	mail.1 Mail.1 mail.1 mailx.1
     13  1.20       wiz 
     14  1.23  christos .if defined(USE_READLINE)
     15  1.23  christos SRCS+=	complete.c
     16  1.23  christos 
     17  1.23  christos CPPFLAGS+=	-DUSE_READLINE
     18  1.23  christos LDADD+=		-ledit
     19  1.23  christos DPADD+=		${LIBEDIT}
     20  1.23  christos 
     21  1.23  christos .endif
     22  1.23  christos 
     23  1.23  christos WARNS=	4
     24   1.3       jtc 
     25  1.21     lukem .PATH: ${.CURDIR}/misc
     26  1.21     lukem 
     27  1.15     lukem .if ${MKSHARE} != "no"
     28  1.21     lukem FILESDIR=		/usr/share/misc
     29  1.21     lukem FILES=			mail.help mail.tildehelp
     30   1.5   mycroft 
     31   1.5   mycroft .if make(install)
     32   1.5   mycroft SUBDIR+= USD.doc
     33  1.14     lukem .endif
     34   1.5   mycroft .endif
     35  1.11     perry 
     36  1.21     lukem CONFIGFILES=		mail.rc
     37  1.21     lukem FILESDIR_mail.rc=	/etc
     38   1.1       cgd 
     39   1.1       cgd .include <bsd.prog.mk>
     40  1.13   mycroft .include <bsd.subdir.mk>
     41