diff options
author | bapt <bapt@FreeBSD.org> | 2014-02-21 09:42:50 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-02-21 09:42:50 +0000 |
commit | 2c1983d484fa78d8de529c066cbb701c22221c67 (patch) | |
tree | 820579176743b0edd8f569e19e88d1f34b59103a | |
parent | deb92520c8b46c56192e39edb8236ac1a00f4d52 (diff) | |
download | FreeBSD-src-2c1983d484fa78d8de529c066cbb701c22221c67.zip FreeBSD-src-2c1983d484fa78d8de529c066cbb701c22221c67.tar.gz |
Add dma-mbox-create forgotten in the previous commit
-rw-r--r-- | libexec/dma-mbox-create/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libexec/dma-mbox-create/Makefile b/libexec/dma-mbox-create/Makefile new file mode 100644 index 0000000..956e4ed --- /dev/null +++ b/libexec/dma-mbox-create/Makefile @@ -0,0 +1,18 @@ +# $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+"' + +NO_MAN= + +WARNS= 2 + +PROG= dma-mbox-create +BINGRP= mail +BINMODE= 4554 + +.include <bsd.prog.mk> |