blob: 759b2b45e89f1fe73985abf03e310438d0e461ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.4 2002/01/14 03:21:40 millert Exp $
LIB= milter
SRCS= main.c engine.c listener.c handler.c comm.c smfi.c signal.c \
sm_gethost.c errstring.c strl.c
CPPFLAGS+= -pthread -Dsm_snprintf=snprintf
.PATH: ${.CURDIR}/../libsm
# This is not a library that gets installed so only build the .a version
# In the future we may wish to install it to ease the use of external filters.
NOPROFILE=1
NOPIC=1
.include <bsd.lib.mk>
|