1# $FreeBSD$ 2 3PACKAGE= caroot 4 5CLEANFILES+= certdata.txt 6 7SUBDIR+= trusted 8SUBDIR+= blacklisted 9 10.include <bsd.prog.mk> 11 12# To be used by secteam@ to update the trusted certificates 13 14fetchcerts: .PHONY 15 fetch --no-sslv3 --no-tlsv1 -o certdata.txt 'https://hg.mozilla.org/projects/nss/raw-file/tip/lib/ckfw/builtins/certdata.txt' 16 17cleancerts: .PHONY 18 @${MAKE} -C ${.CURDIR}/trusted ${.TARGET} 19 20updatecerts: .PHONY cleancerts fetchcerts 21 perl ${.CURDIR}/MAca-bundle.pl -i certdata.txt -o ${.CURDIR}/trusted 22