summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-04-04 04:58:36 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-04-04 04:58:36 +0000
commite675e660c9b8c756358b2c060403eb3f12441d90 (patch)
treed7e317be5c77b0b72fc3b6a317443db99dfce513 /gnu
parent604014b0e8c84cef4df5f41a28fc73fd8ecfe9f0 (diff)
Don't install sendmail internal libs and add some comments
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.sbin/sendmail/Makefile16
1 files changed, 14 insertions, 2 deletions
diff --git a/gnu/usr.sbin/sendmail/Makefile b/gnu/usr.sbin/sendmail/Makefile
index 52294557e33..d36732b2a6d 100644
--- a/gnu/usr.sbin/sendmail/Makefile
+++ b/gnu/usr.sbin/sendmail/Makefile
@@ -1,7 +1,19 @@
-# $OpenBSD: Makefile,v 1.2 2000/04/02 19:48:09 millert Exp $
+# $OpenBSD: Makefile,v 1.3 2000/04/04 04:58:35 millert Exp $
-SUBDIR= libsmutil libsmdb sendmail mailstats makemap praliases smrsh cf/cf
+# 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