2019-10-02 01:05:29 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
CLEANFILES+= certdata.txt
|
|
|
|
|
|
|
|
SUBDIR+= trusted
|
|
|
|
SUBDIR+= blacklisted
|
|
|
|
|
2020-01-24 16:43:02 +00:00
|
|
|
.include <bsd.obj.mk>
|
2019-10-02 01:05:29 +00:00
|
|
|
|
|
|
|
# To be used by secteam@ to update the trusted certificates
|
|
|
|
fetchcerts: .PHONY
|
|
|
|
fetch --no-sslv3 --no-tlsv1 -o certdata.txt 'https://hg.mozilla.org/projects/nss/raw-file/tip/lib/ckfw/builtins/certdata.txt'
|
|
|
|
|
|
|
|
cleancerts: .PHONY
|
|
|
|
@${MAKE} -C ${.CURDIR}/trusted ${.TARGET}
|
|
|
|
|
|
|
|
updatecerts: .PHONY cleancerts fetchcerts
|
|
|
|
perl ${.CURDIR}/MAca-bundle.pl -i certdata.txt -o ${.CURDIR}/trusted
|