1# $NetBSD: Makefile,v 1.3 2020/03/01 18:08:16 christos Exp $
2#
3
4.include <bsd.own.mk>
5
6TESTSDIR=	${TESTSBASE}/net/can
7
8TESTS_C=	t_can t_canfilter
9
10SRCS.t_can=		t_can.c h_canutils.c
11
12SRCS.t_canfilter=	t_canfilter.c h_canutils.c
13
14# XXX we don't use INET here, but we need rumpnet_netinet anyway:
15# common code in if.c is compiled with -DINET and will dereference ip_pktq,
16# which is NULL if rumpnet_netinet is not inclued.
17# 
18LDADD+=		-lrumpnet_netcan -lrumpnet_netinet -lrumpnet_net -lrumpnet
19LDADD+=		${LIBRUMPBASE}
20
21.include <bsd.test.mk>
22