Makefile revision 38581
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$
7#
8
9.PATH:		${.CURDIR}/../../../contrib/amd/fixmount \
10		${.CURDIR}/../../../contrib/amd/conf/checkmount
11
12PROG=		fixmount
13MAN8=		fixmount.8
14
15SRCS=		fixmount.c 
16
17#		These are generated at compile time
18SRCS+=		mount.h nfs_prot.h
19
20#		These would be links created by the GNU-style configure
21SRCS+=		checkmount_bsd44.c
22
23DPDADD+=	${LIBAMU}
24LDADD+=		${LIBAMU} -lrpcsvc
25
26.include <bsd.prog.mk>
27