xref: /openbsd/regress/sys/kern/cmsgsize/Makefile (revision 4bdff4be)
1#	$OpenBSD: Makefile,v 1.2 2018/10/08 20:42:14 bluhm Exp $
2
3PROG=	cmsgsize
4
5# LOCAL is the machine where this makefile is running
6# FAKE is a non existing machine in the same network
7
8LOCAL_ADDR ?=
9FAKE_ADDR ?=
10
11.if empty (LOCAL_ADDR) || empty (FAKE_ADDR)
12regress:
13	@echo This tests needs a local address and a non existing remote
14	@echo address in the same IPv4 network.  LOCAL_ADDR FAKE_ADDR are
15	@echo empty.  Fill out these variables for additional tests.
16	@echo SKIPPED
17.endif
18
19run-regress-${PROG}: ${PROG}
20	./${PROG} ${LOCAL_ADDR} ${FAKE_ADDR}
21
22.include <bsd.regress.mk>
23