diff options
author | obrien <obrien@FreeBSD.org> | 1998-08-27 08:09:42 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-08-27 08:09:42 +0000 |
commit | 94d0aeca4be109aab512a4b6808233d1d19afb5e (patch) | |
tree | e37a3bb538d2a2265475dfaf58e064ef4b3d2631 /usr.sbin/amd/amq | |
parent | a9218237dec69d496f6dbe3c26dde6a199ba55c1 (diff) | |
download | FreeBSD-src-94d0aeca4be109aab512a4b6808233d1d19afb5e.zip FreeBSD-src-94d0aeca4be109aab512a4b6808233d1d19afb5e.tar.gz |
bmake framework for contrib_amd
Diffstat (limited to 'usr.sbin/amd/amq')
-rw-r--r-- | usr.sbin/amd/amq/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.sbin/amd/amq/Makefile b/usr.sbin/amd/amq/Makefile new file mode 100644 index 0000000..8b36a5c --- /dev/null +++ b/usr.sbin/amd/amq/Makefile @@ -0,0 +1,21 @@ +# ex:ts=8 +# +# Makefile for amd +# This file is under a "BSD" copyright (c) by David O'Brien 1998 +# +# $Id$ +# + +.PATH: ${.CURDIR}/../../../contrib/amd/amq + +PROG= amq +MAN8= amq.8 + +SRCS= amq.c amq_clnt.c amq_xdr.c + +CFLAGS+= -I${.CURDIR}/../../../contrib/amd/amq + +DPDADD+= ${LIBAMU} +LDADD+= ${LIBAMU} + +.include <bsd.prog.mk> |