blob: 7b35e3fbc1ccd2b59d615674c539de5f085210bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.10 2010/10/17 22:54:37 schwarze Exp $
# We only use these libs internally
.if !make(install)
SUBDIR= libsmutil libsmdb libsm
.else
SUBDIR=
.endif
# The bits we install
SUBDIR+= libmilter sendmail mailstats makemap praliases smrsh editmap cf/cf
# Extra bits we don't build/install right now
#SUBDIR+= mail.local rmail vacation
# These just get installed verbatim
.if make(install)
SUBDIR+= cf
.endif
.include <bsd.subdir.mk>
|