27 lines
473 B
Makefile
27 lines
473 B
Makefile
# $NetBSD: Makefile,v 1.5 2019/02/05 13:00:03 maxv Exp $
|
|
|
|
NOMAN= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/libnvmm
|
|
|
|
COPTS+= -Wall
|
|
LDADD+= -lnvmm
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
.if ${MACHINE} == "amd64"
|
|
# I/O Assist
|
|
TESTS_SH= t_io_assist
|
|
PROGS= h_io_assist
|
|
SRCS.h_io_assist= h_io_assist.c h_io_assist_asm.S
|
|
|
|
# Mem Assist
|
|
TESTS_SH+= t_mem_assist
|
|
PROGS+= h_mem_assist
|
|
SRCS.h_mem_assist= h_mem_assist.c h_mem_assist_asm.S
|
|
.endif
|
|
|
|
.include <bsd.test.mk>
|