diff options
author | Jilles Tjoelker <jilles@FreeBSD.org> | 2016-05-08 21:11:24 +0000 |
---|---|---|
committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2016-05-08 21:11:24 +0000 |
commit | 1f9b8f8e0db814dfd3f004f27ebe31c6fb4f6b51 (patch) | |
tree | 29245d81621325b47b87f2d8ae8497f7d2ea9beb /usr.bin/xinstall/Makefile | |
parent | 90ce51106e673c85e7d0c332eb817af21ba97f21 (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/Makefile | 6 |
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> |