1 1.2 joerg # $NetBSD: Makefile,v 1.2 2018/01/22 01:34:42 joerg Exp $ 2 1.1 christos 3 1.1 christos .include <bsd.own.mk> 4 1.1 christos 5 1.1 christos PROG= fstyp 6 1.1 christos SRCS= cd9660.c ext2fs.c fstyp.c msdosfs.c ntfs.c ufs.c 7 1.1 christos 8 1.1 christos .if (${MKZFS} != "no") 9 1.1 christos SRCS+= zfs.c 10 1.1 christos .endif 11 1.1 christos 12 1.1 christos MAN= fstyp.8 13 1.1 christos 14 1.1 christos WARNS?= 6 15 1.1 christos 16 1.1 christos .if (${MKZFS} != "no") 17 1.1 christos CFLAGS+= -DHAVE_ZFS 18 1.1 christos CFLAGS+= -Wno-unknown-pragmas 19 1.1 christos CFLAGS+= -I${NETBSDSRCDIR}/external 20 1.1 christos CFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/include 21 1.1 christos CFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/sys 22 1.1 christos CFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common 23 1.1 christos CFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common/fs/zfs 24 1.1 christos CFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/dist/lib/libnvpair 25 1.1 christos LDADD+= -lnvpair -lzfs 26 1.1 christos .endif 27 1.1 christos 28 1.2 joerg CWARNFLAGS.clang+= -Wno-unknown-pragmas 29 1.2 joerg 30 1.1 christos .include <bsd.prog.mk> 31