blob: c31c99c9465553f71075241b06422d5f42912ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.1 2017/01/25 10:29:34 beck Exp $
TESTS = \
doit.sh
REGRESS_TARGETS= all_tests
CLEANFILES += \
1000.pem client.cert.pem intermediate.cert.pem root.cert.pem server.csr.pem \
1001.pem client.csr.pem intermediate.csr.pem root.key.pem server.key.pem \
chain.pem client.key.pem intermediate.key.pem server.cert.pem \
int.txt int.txt.attr int.txt.old int.txt.attr.old \
root.txt root.txt.attr root.txt.old root.txt.attr.old \
intserial rootserial intserial.old rootserial.old
all_tests: ${TESTS}
@for test in $>; do \
./$$test; \
done
.include <bsd.regress.mk>
|