Makefile revision 38650
1# ex:ts=8
2#
3# Makefile for amd
4# 	This file is under a "BSD" copyright (c) by David O'Brien 1998
5#
6# $Id: Makefile,v 1.1 1998/08/27 08:09:41 obrien Exp $
7#
8
9.PATH:		${.CURDIR}/../../../contrib/amd/amq
10
11BINDIR=		/usr/bin
12
13PROG=		pawd
14MAN1=		pawd.1
15
16SRCS=		pawd.c amq_clnt.c amq_xdr.c
17
18CFLAGS+=	-I${.CURDIR}/../../../contrib/amd/amq
19
20DPADD+=		${LIBAMU}
21LDADD+=		${LIBAMU}
22
23.include <bsd.prog.mk>
24