3fe5d819ac
installing two new libraries (and two lint thingys, but no shared or pic stuff) and two headers files (into /usr/include/milter). Shared libraries (etc) could be built, but as I'm currently unsure of the ABI/API stability, I'm going to examine it more closely before enabling it, as opposed to finding out later that it's volatile and disabling it. NOTE! We really ought to have a generic rc.d script to start the milters (before sendmail or any other MTA that you have that uses them), but I haven't finished it yet. The milter support here is being enabled to satisfy current popular demand. I'll come up with a script soon. Unless someone feels like beating me to it. So until then, you're on your own.
20 lines
342 B
Makefile
20 lines
342 B
Makefile
# $NetBSD: Makefile,v 1.6 2003/07/04 04:52:59 atatat Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= libsm libsmdb libsmutil libmilter .WAIT \
|
|
sendmail mailstats makemap editmap praliases smrsh
|
|
|
|
.if ${MKDOC} != "no"
|
|
SUBDIR+= doc
|
|
.endif
|
|
|
|
.if ${MKSHARE} != "no"
|
|
SUBDIR+= cf/cf
|
|
.if make(install)
|
|
SUBDIR+= cf
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|