blob: 2e1d798b639c0454e919db7fcd0d3ae7d44fb322 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
bin_PROGRAMS = esmtp
dist_man_MANS = esmtp.1
esmtp_SOURCES = \
lexer.l \
list.h \
local.c \
local.h \
main.c \
main.h \
message.c \
message.h \
parser.y \
rcfile.h \
rfc822.c \
rfc822.h \
smtp.c \
smtp.h \
xmalloc.h
EXTRA_DIST = sample.esmtprc
AM_YFLAGS = -d
install-exec-hook:
$(mkinstalldirs) $(DESTDIR)$(sbindir) $(DESTDIR)$(libdir)
$(LN_S) $(bindir)/esmtp $(DESTDIR)$(sbindir)/sendmail
$(LN_S) $(bindir)/esmtp $(DESTDIR)$(libdir)/sendmail
$(LN_S) $(bindir)/esmtp $(DESTDIR)$(bindir)/mailq
$(LN_S) $(bindir)/esmtp $(DESTDIR)$(bindir)/newaliases
install-data-hook:
$(LN_S) esmtp.1 $(DESTDIR)$(man1dir)/sendmail.1
$(LN_S) esmtp.1 $(DESTDIR)$(man1dir)/mailq.1
$(LN_S) esmtp.1 $(DESTDIR)$(man1dir)/newaliases.1
|