summaryrefslogtreecommitdiffstats
path: root/regress/sys/kern/unveil/Makefile
blob: cc74ed78335fbc0535ce30470758c09b75fc2072 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#	$OpenBSD: Makefile,v 1.3 2019/08/06 20:21:36 bluhm Exp $

PROG=	unveil_test
SRCS=	syscalls.c
CFLAGS=	-Wall
NOMAN=	yes
LDADD=	-lutil
DPADD=	${LIBUTIL}

REGRESS_TARGETS =	test_normal
REGRESS_ROOT_TARGETS =	test_normal

test_normal: ${PROG}
	${SUDO} ./${PROG}

.include <bsd.regress.mk>