diff options
author | Julio Merino <jmmv@FreeBSD.org> | 2014-03-16 02:07:08 +0000 |
---|---|---|
committer | Julio Merino <jmmv@FreeBSD.org> | 2014-03-16 02:07:08 +0000 |
commit | c68de7484af86d70c7ca7181dec7170c270fa88a (patch) | |
tree | 5f7443092d7c0f6cea7f6ce3d939e34b38133fd6 /sbin/mdconfig/Makefile | |
parent | f225bcd157f8c5cfd26d850247d1f3b8a285879d (diff) | |
download | src-c68de7484af86d70c7ca7181dec7170c270fa88a.tar.gz src-c68de7484af86d70c7ca7181dec7170c270fa88a.zip |
Migrate tools/regression/sbin/ to the new tests layout.
Pretty much all that this change does is shuffles the code around and hooks
it into the regular build. The code of the old tests has not changed.
Notes
Notes:
svn path=/head/; revision=263220
Diffstat (limited to 'sbin/mdconfig/Makefile')
-rw-r--r-- | sbin/mdconfig/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sbin/mdconfig/Makefile b/sbin/mdconfig/Makefile index be8b1b556dde..4b9b9405474d 100644 --- a/sbin/mdconfig/Makefile +++ b/sbin/mdconfig/Makefile @@ -1,9 +1,15 @@ # $FreeBSD$ +.include <bsd.own.mk> + PROG= mdconfig MAN= mdconfig.8 DPADD= ${LIBUTIL} ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} LDADD= -lutil -lgeom -lbsdxml -lsbuf +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + .include <bsd.prog.mk> |