30 lines
1.2 KiB
Makefile
30 lines
1.2 KiB
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/cmd/zhack
|
||
|
|
||
|
PROG= zhack
|
||
|
NO_MAN=
|
||
|
|
||
|
WARNS?= 0
|
||
|
CSTD= c99
|
||
|
|
||
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris
|
||
|
CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris/include
|
||
|
CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris/lib/libumem
|
||
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libnvpair
|
||
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libuutil/common
|
||
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libzfs/common
|
||
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libzpool/common
|
||
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/fs/zfs
|
||
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common
|
||
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/sys
|
||
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/zfs
|
||
|
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/head
|
||
|
CFLAGS+= -I${.CURDIR}/../../lib/libumem
|
||
|
|
||
|
DPADD= ${LIBGEOM} ${LIBM} ${LIBNVPAIR} ${LIBPTHREAD} ${LIBUMEM} \
|
||
|
${LIBUUTIL} ${LIBZFS} ${LIBZPOOL}
|
||
|
LDADD= -lgeom -lm -lnvpair -lpthread -lumem -luutil -lzfs -lzpool
|
||
|
|
||
|
.include <bsd.prog.mk>
|