xref: /minix3/tests/lib/libc/gen/posix_spawn/Makefile (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1# $NetBSD: Makefile,v 1.2 2012/02/14 00:13:54 martin Exp $
2
3NOMAN=		# defined
4WARNS=4
5
6.include <bsd.own.mk>
7
8TESTSDIR=	${TESTSBASE}/lib/libc/gen/posix_spawn
9
10TESTS_C=	t_spawn
11TESTS_C+=	t_fileactions
12TESTS_C+=	t_spawnattr
13
14BINDIR=		${TESTSDIR}
15SCRIPTSDIR=	${TESTSDIR}
16
17PROGS=		h_fileactions
18PROGS+=		h_spawn
19PROGS+=		h_spawnattr
20SCRIPTS=	h_nonexec h_zero
21
22h_zero:
23	dd if=/dev/zero of=h_zero bs=1k count=2
24	chmod a+x h_zero
25
26CLEANFILES+=	h_nonexec h_zero
27
28.include <bsd.test.mk>
29