xref: /openbsd/regress/lib/libcrypto/init/Makefile (revision 09467b48)
1#	$OpenBSD: Makefile,v 1.1 2018/03/19 14:34:33 beck Exp $
2PROG=	init_pledge
3SRCS+=	init_pledge.c
4NOMAN=	yes
5
6LDADD+=		-lcrypto -lutil
7CFLAGS+=	-Wall -Werror
8
9REGRESS_TARGETS+=	test_normal
10
11test_normal: ${PROG}
12	./${PROG}
13
14.include <bsd.regress.mk>
15