blob: d36732b2a6d8074d1025a4c644aa654813d4282d (
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.3 2000/04/04 04:58:35 millert Exp $
# We only use these libs internally
.if !make(install)
SUBDIR= libsmutil libsmdb
.else
SUBDIR=
.endif
# The bits we install
SUBDIR+=sendmail mailstats makemap praliases smrsh 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>
|