Makefile revision 319186
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: stable/11/usr.bin/xinstall/Makefile 319186 2017-05-30 04:27:05Z ngie $
3
4.include <src.opts.mk>
5
6PROG=		xinstall
7PROGNAME=	install
8SRCS=		xinstall.c getid.c
9MAN=		install.1
10
11.PATH:		${SRCTOP}/contrib/mtree
12CFLAGS+=	-I${SRCTOP}/contrib/mtree
13CFLAGS+=	-I${SRCTOP}/lib/libnetbsd
14
15LIBADD=	md
16
17.if ${MK_TESTS} != "no"
18SUBDIR+=	tests
19.endif
20
21.include <bsd.prog.mk>
22