diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-01-21 08:16:52 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-01-21 08:16:52 +0000 |
commit | cbd81d83646bab2761557075c6c163a0d4ade90d (patch) | |
tree | 86c8ec1eaac05c433c5280af2400af3cd99060b2 | |
parent | 554ec94adf259352fbc39b4ea2808119a4142f26 (diff) |
amq doesn't use anything from misc_rpc.c
-rw-r--r-- | usr.sbin/amd/amq/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/amd/amq/Makefile b/usr.sbin/amd/amq/Makefile index 9a57675569c..98931cbd83f 100644 --- a/usr.sbin/amd/amq/Makefile +++ b/usr.sbin/amd/amq/Makefile @@ -1,12 +1,12 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.3 2014/10/20 06:55:59 guenther Exp $ +# $Id: Makefile,v 1.4 2015/01/21 08:16:51 guenther Exp $ PROG = amq -SRCS = amq.c amq_clnt.c amq_xdr.c misc_rpc.c +SRCS = amq.c amq_clnt.c amq_xdr.c MAN = amq.8 CFLAGS+=-I${.CURDIR}/../include CFLAGS+=-I${.CURDIR}/../rpcx -.PATH: ${.CURDIR}/../rpcx ${.CURDIR}/../amd +.PATH: ${.CURDIR}/../rpcx .include "../../Makefile.inc" .include <bsd.prog.mk> |