Home | History | Annotate | Line # | Download | only in libnvmm
Makefile revision 1.5
      1  1.5      maxv # $NetBSD: Makefile,v 1.5 2019/02/05 13:00:03 maxv Exp $
      2  1.1      maxv 
      3  1.1      maxv NOMAN= # defined
      4  1.1      maxv 
      5  1.1      maxv .include <bsd.own.mk>
      6  1.1      maxv 
      7  1.1      maxv TESTSDIR=	${TESTSBASE}/lib/libnvmm
      8  1.1      maxv 
      9  1.1      maxv COPTS+=	-Wall
     10  1.1      maxv LDADD+=	-lnvmm
     11  1.1      maxv 
     12  1.3  jakllsch BINDIR=         ${TESTSDIR}
     13  1.3  jakllsch 
     14  1.4       kre .if ${MACHINE} == "amd64"
     15  1.5      maxv # I/O Assist
     16  1.5      maxv TESTS_SH=		t_io_assist
     17  1.5      maxv PROGS=			h_io_assist
     18  1.5      maxv SRCS.h_io_assist=	h_io_assist.c h_io_assist_asm.S
     19  1.5      maxv 
     20  1.1      maxv # Mem Assist
     21  1.5      maxv TESTS_SH+=		t_mem_assist
     22  1.5      maxv PROGS+=			h_mem_assist
     23  1.1      maxv SRCS.h_mem_assist=	h_mem_assist.c h_mem_assist_asm.S
     24  1.1      maxv .endif
     25  1.1      maxv 
     26  1.1      maxv .include <bsd.test.mk>
     27