summaryrefslogtreecommitdiff
path: root/libexec/spamd/Makefile
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-12-21 01:41:55 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-12-21 01:41:55 +0000
commitb4e46ea34f21bd17d5fb0b9cb6558f71fa04670a (patch)
treefed25652610e333cd01ef187a935684965fff825 /libexec/spamd/Makefile
parent2262e13d9380cf8cadcfd3ea1f8cd1f474b3d53d (diff)
spamd: work in progress
Diffstat (limited to 'libexec/spamd/Makefile')
-rw-r--r--libexec/spamd/Makefile13
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>