mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
22 lines
380 B
Makefile
22 lines
380 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
PACKAGE= tests
|
||
|
|
|
||
|
|
ATF_TESTS_SH+= be_create
|
||
|
|
|
||
|
|
PROGS= target_prog
|
||
|
|
SRCS_target_prog= target_prog.c
|
||
|
|
BINDIR_target_prog= ${TESTSDIR}
|
||
|
|
|
||
|
|
LIBADD+= zfs
|
||
|
|
LIBADD+= nvpair
|
||
|
|
LIBADD+= be
|
||
|
|
|
||
|
|
CFLAGS+= -I${SRCTOP}/lib/libbe
|
||
|
|
CFLAGS+= -I${SRCTOP}/sys/cddl/compat/opensolaris
|
||
|
|
CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common
|
||
|
|
|
||
|
|
CFLAGS+= -DNEED_SOLARIS_BOOLEAN
|
||
|
|
|
||
|
|
.include <bsd.test.mk>
|