]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/fstyp/Makefile
The ctladm man page incorrectly duplicated the text for the
[FreeBSD/FreeBSD.git] / usr.sbin / fstyp / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PROG=   fstyp
6 SRCS=   cd9660.c exfat.c ext2fs.c fstyp.c geli.c msdosfs.c ntfs.c ufs.c
7
8 .if ${MK_ZFS} != "no"
9 SRCS += zfs.c
10 .endif
11
12 MAN=    fstyp.8
13
14 WARNS?= 2
15
16 .include <bsd.endian.mk>
17
18 .if ${MK_TESTS} != "no" && ${TARGET_ENDIANNESS} == 1234
19 SUBDIR+=        tests
20 .endif
21
22 .if ${MK_ZFS} != "no"
23 IGNORE_PRAGMA=  YES
24
25 CFLAGS+= -DNEED_SOLARIS_BOOLEAN -DHAVE_ZFS
26 CFLAGS+= -I${SRCTOP}/sys/cddl/compat/opensolaris
27 CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/include
28 CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/lib/libumem
29 CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libnvpair
30 CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libzpool/common
31 CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common/fs/zfs
32 CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common
33 CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common/sys
34 CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/head
35 .endif
36
37 CFLAGS+=-I${SRCTOP}/sys
38
39 LIBADD= geom md
40
41 .if ${MK_ZFS} != "no"
42 LIBADD+=nvpair zfs
43 .endif
44
45 .include <bsd.prog.mk>