]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - bin/rmail/Makefile
Implement pci_enable_msi() and pci_disable_msi() in the LinuxKPI.
[FreeBSD/FreeBSD.git] / bin / rmail / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 5/31/93
2 # $FreeBSD$
3
4 PACKAGE=sendmail
5 SENDMAIL_DIR=${SRCTOP}/contrib/sendmail
6 .PATH:  ${SENDMAIL_DIR}/rmail
7
8 # Not much point this being static. It calls a shared sendmail...
9 NO_SHARED?= NO
10
11 PROG=   rmail
12 SRCS=   rmail.c
13 MAN=    rmail.8
14
15 WARNS?= 2
16 CFLAGS+=-I${SENDMAIL_DIR}/include -I.
17
18 LIBADD= sm
19
20 SRCS+=  sm_os.h
21 CLEANFILES+=sm_os.h
22
23 # User customizations to the sendmail build environment
24 CFLAGS+=${SENDMAIL_CFLAGS}
25 DPADD+=${SENDMAIL_DPADD}
26 LDADD+=${SENDMAIL_LDADD}
27 LDFLAGS+=${SENDMAIL_LDFLAGS}
28
29 # If you want to have your rmail queuing the mail only, uncomment the
30 # following:
31 # CFLAGS+= -DQUEUE_ONLY
32
33 sm_os.h: ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h .NOMETA
34         ln -sf ${.ALLSRC} ${.TARGET}
35
36 .include <bsd.prog.mk>