1 # $NetBSD: Makefile,v 1.9 2016/01/23 21:22:48 christos Exp $ 2 3 NOMAN= # defined 4 5 .include <bsd.own.mk> 6 7 TESTSDIR= ${TESTSBASE}/include/sys 8 9 TESTS_C= t_bitops t_bootblock t_cdefs t_tree t_types 10 11 LDADD.t_bitops+= -lm 12 13 .if (${MKRUMP} != "no") && !defined(BSD_MK_COMPAT_FILE) 14 TESTS_C+= t_socket 15 CPPFLAGS.t_socket.c+= -D_KERNTYPES 16 LDADD.t_socket+= -lrumpnet_local -lrumpnet_net -lrumpnet 17 LDADD.t_socket+= -lrumpvfs -lrump -lrumpuser -lpthread 18 .endif 19 20 .include <bsd.test.mk> 21