]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - cddl/lib/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / cddl / lib / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 SUBDIR= ${_drti} \
6         libavl \
7         libctf \
8         ${_libdtrace} \
9         libnvpair \
10         libumem \
11         libuutil \
12         ${_libzfs_core} \
13         ${_libzfs} \
14         ${_libzpool}
15
16 .if ${MK_ZFS} != "no"
17 _libzfs_core=   libzfs_core
18 _libzfs=        libzfs
19 .if ${MK_LIBTHR} != "no"
20 _libzpool=      libzpool
21 .endif
22 .endif
23
24 .if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" || \
25         ${MACHINE_CPUARCH} == "mips" || ${MACHINE_CPUARCH} == "powerpc"
26 _drti=          drti
27 _libdtrace=     libdtrace
28 .endif
29
30 .include <bsd.subdir.mk>