diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-02-21 07:26:49 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-02-21 07:26:49 +0000 |
| commit | a9e8641da961bcf3d24afc85fd657f2083a872a2 (patch) | |
| tree | 50c8cd4c6b55c353a3f982a5f9f8c8590d1ba5ec /libexec/dma | |
| parent | 159dd56f947fb0d05692ca13ca4fcc389fd52dca (diff) | |
| parent | c48517e8d3cc4e8abc200d7d5dffc340fc4f01c7 (diff) | |
Notes
Diffstat (limited to 'libexec/dma')
| -rw-r--r-- | libexec/dma/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libexec/dma/Makefile b/libexec/dma/Makefile new file mode 100644 index 000000000000..d28d2036e197 --- /dev/null +++ b/libexec/dma/Makefile @@ -0,0 +1,32 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../contrib/dma + +CFLAGS= -I${.CURDIR}/../../contrib/dma \ + -DHAVE_REALLOCF -DHAVE_STRLCPY -DHAVE_GETPROGNAME \ + -DCONF_PATH='"/etc/dma"' \ + -DLIBEXEC_PATH='"/usr/libexec"' -DDMA_VERSION='"v0.9+"' +DPADD= ${LIBSSL} ${LIBCRYPTO} +LDADD= -lssl -lcrypto + +PROG= dma +SRCS= aliases_parse.y \ + aliases_scan.l \ + base64.c \ + conf.c \ + crypto.c \ + dma.c \ + dns.c \ + local.c \ + mail.c \ + net.c \ + spool.c \ + util.c +MAN8= dma.8 +YFLAGS+= -i +CLEANFILES= aliases_parse.i + +BINGRP= mail +BINMODE= 2555 + +.include <bsd.prog.mk> |
