]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/fstyp/Makefile
Update hostapd/wpa_supplicant to version 2.5.
[FreeBSD/FreeBSD.git] / usr.sbin / fstyp / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PROG=   fstyp
6 SRCS=   cd9660.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 <src.opts.mk>
17
18 .if ${MK_TESTS} != "no"
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${.CURDIR}/../../sys/cddl/compat/opensolaris
27 CFLAGS+= -I${.CURDIR}/../../cddl/compat/opensolaris/include
28 CFLAGS+= -I${.CURDIR}/../../cddl/compat/opensolaris/lib/libumem
29 CFLAGS+= -I${.CURDIR}/../../cddl/contrib/opensolaris/lib/libnvpair
30 CFLAGS+= -I${.CURDIR}/../../cddl/contrib/opensolaris/lib/libzpool/common
31 CFLAGS+= -I${.CURDIR}/../../sys/cddl/contrib/opensolaris/uts/common/fs/zfs
32 CFLAGS+= -I${.CURDIR}/../../sys/cddl/contrib/opensolaris/uts/common
33 CFLAGS+= -I${.CURDIR}/../../sys/cddl/contrib/opensolaris/uts/common/sys
34 CFLAGS+= -I${.CURDIR}/../../cddl/contrib/opensolaris/head
35 .endif
36
37 CFLAGS+=-I${.CURDIR}/../../sys
38
39 DPADD=   ${LIBGEOM} ${LIBMD}
40 LDADD=   -lgeom -lmd
41
42 .if ${MK_ZFS} != "no"
43 DPADD += ${LIBNVPAIR} ${LIBZFS}
44 LDADD += -lnvpair -lzfs
45 .endif
46
47 .include <bsd.prog.mk>