diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-12-21 01:41:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-12-21 01:41:55 +0000 |
commit | b4e46ea34f21bd17d5fb0b9cb6558f71fa04670a (patch) | |
tree | fed25652610e333cd01ef187a935684965fff825 /libexec/spamd/Makefile | |
parent | 2262e13d9380cf8cadcfd3ea1f8cd1f474b3d53d (diff) |
spamd: work in progress
Diffstat (limited to 'libexec/spamd/Makefile')
-rw-r--r-- | libexec/spamd/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libexec/spamd/Makefile b/libexec/spamd/Makefile new file mode 100644 index 00000000000..7ec1195f654 --- /dev/null +++ b/libexec/spamd/Makefile @@ -0,0 +1,13 @@ +# $OpenBSD: Makefile,v 1.1 2002/12/21 01:41:54 deraadt Exp $ + +PROG= spamd +SRCS= spamd.c +MAN= spamd.8 + +CFLAGS+= -Wall -Werror + +afterinstall: + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/spamd-setup.sh ${DESTDIR}${BINDIR}/spamd-setup + +.include <bsd.prog.mk> |