diff options
author | asomers <asomers@FreeBSD.org> | 2015-09-03 19:42:56 +0000 |
---|---|---|
committer | asomers <asomers@FreeBSD.org> | 2015-09-03 19:42:56 +0000 |
commit | 60980f847d9fbbfdb1b2ab79130fd940ae59feae (patch) | |
tree | f0c941dbbdbf37541637ceabb73519f4cba57839 /usr.sbin/fstyp/Makefile | |
parent | 9c5fd1a68e5e6ad579a1144610d5bf3b8bbedbea (diff) | |
download | FreeBSD-src-60980f847d9fbbfdb1b2ab79130fd940ae59feae.zip FreeBSD-src-60980f847d9fbbfdb1b2ab79130fd940ae59feae.tar.gz |
MFC r286964
Add ATF functional tests for fstyp(8). No ZFS or GELI tests yet.
Diffstat (limited to 'usr.sbin/fstyp/Makefile')
-rw-r--r-- | usr.sbin/fstyp/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/fstyp/Makefile b/usr.sbin/fstyp/Makefile index d0b14d1..b80398b 100644 --- a/usr.sbin/fstyp/Makefile +++ b/usr.sbin/fstyp/Makefile @@ -1,9 +1,15 @@ # $FreeBSD$ +.include <bsd.own.mk> + PROG= fstyp SRCS= fstyp.c ext2fs.c cd9660.c msdosfs.c ntfs.c ufs.c MAN= fstyp.8 WARNS= 6 +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + .include <bsd.prog.mk> |