diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/cat/Makefile | 6 | ||||
-rw-r--r-- | bin/cat/tests/Makefile | 13 |
2 files changed, 19 insertions, 0 deletions
diff --git a/bin/cat/Makefile b/bin/cat/Makefile index 672a4ee..97e5812 100644 --- a/bin/cat/Makefile +++ b/bin/cat/Makefile @@ -1,6 +1,12 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD$ +.include <src.opts.mk> + PROG= cat +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + .include <bsd.prog.mk> diff --git a/bin/cat/tests/Makefile b/bin/cat/tests/Makefile new file mode 100644 index 0000000..5afdd84 --- /dev/null +++ b/bin/cat/tests/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ + +OBJTOP= ${.OBJDIR}/../../.. +SRCTOP= ${.CURDIR}/../../.. +TESTSRC= ${SRCTOP}/contrib/netbsd-tests/bin/cat + +TESTSDIR= ${TESTSBASE}/bin/cat + +NETBSD_ATF_TESTS_SH= cat_test + +.include <netbsd-tests.test.mk> + +.include <bsd.test.mk> |