aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/xinstall/Makefile
diff options
context:
space:
mode:
authorJilles Tjoelker <jilles@FreeBSD.org>2016-05-08 21:11:24 +0000
committerJilles Tjoelker <jilles@FreeBSD.org>2016-05-08 21:11:24 +0000
commit1f9b8f8e0db814dfd3f004f27ebe31c6fb4f6b51 (patch)
tree29245d81621325b47b87f2d8ae8497f7d2ea9beb /usr.bin/xinstall/Makefile
parent90ce51106e673c85e7d0c332eb817af21ba97f21 (diff)
install: Add some tests.
Notes
Notes: svn path=/head/; revision=299244
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r--usr.bin/xinstall/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile
index c1056b5ad7b6..dcb486bdf8ec 100644
--- a/usr.bin/xinstall/Makefile
+++ b/usr.bin/xinstall/Makefile
@@ -1,6 +1,8 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
+.include <src.opts.mk>
+
PROG= xinstall
PROGNAME= install
SRCS= xinstall.c getid.c
@@ -12,4 +14,8 @@ CFLAGS+= -I${.CURDIR}/../../lib/libnetbsd
LIBADD= md
+.if ${MK_TESTS} != "no"
+SUBDIR+= tests
+.endif
+
.include <bsd.prog.mk>