]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/caroot/trusted/Makefile
caroot: switch to using echo+shell glob to enumerate certs
[FreeBSD/FreeBSD.git] / secure / caroot / trusted / Makefile
1 # $FreeBSD$
2
3 BINDIR=         /usr/share/certs/trusted
4
5 TRUSTED_CERTS!= echo ${.CURDIR}/*.pem 2> /dev/null || true
6
7 FILES+=  ${TRUSTED_CERTS}
8
9 cleancerts:
10         @[ -z "${TRUSTED_CERTS}" ] || rm ${TRUSTED_CERTS}
11
12 .include <bsd.prog.mk>