diff options
author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-04-06 01:09:06 +0000 |
---|---|---|
committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-04-06 01:09:06 +0000 |
commit | f0a75d274af375d15b97b830966b99a02b7db911 (patch) | |
tree | 3061c8734d9ce560165e672836837a0f411a83c9 /cddl/lib/Makefile | |
parent | c8c0ba192e3ac07c3797a1bbca52e5575e019890 (diff) |
Notes
Diffstat (limited to 'cddl/lib/Makefile')
-rw-r--r-- | cddl/lib/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cddl/lib/Makefile b/cddl/lib/Makefile new file mode 100644 index 0000000000000..88554e2f0a923 --- /dev/null +++ b/cddl/lib/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +SUBDIR= libavl +SUBDIR+=libnvpair +SUBDIR+=libumem +SUBDIR+=libuutil +.if ${MK_CDDL} != "no" +SUBDIR+=libzfs +SUBDIR+=${_libzpool} +.endif + +.if ${MACHINE_ARCH} == "i386" +.if ${MACHINE} == "i386" +_libzpool= libzpool +.endif +.endif + +.include <bsd.subdir.mk> |