blob: d0839ba955549ba8c0a88318606eb45e27f801ae (
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.4 2001/09/11 19:02:47 millert Exp $
# We only use these libs internally
.if !make(install)
SUBDIR= libsmutil libsmdb libsm
.else
SUBDIR=
.endif
# The bits we install
SUBDIR+=sendmail mailstats makemap praliases smrsh editmap cf/cf
# Extra bits we don't build/install right now
#SUBDIR+= libmilter mail.local rmail vacation
# These just get installed verbatim
.if make(install)
SUBDIR+= doc/op cf
.endif
.include <bsd.subdir.mk>
|